Jump to content

Mugan

New Members
  • Posts

    8
  • Joined

  • Last visited

Mugan's Achievements

Member

Member (2/5)

0

Reputation

  1. ok, well thanks anyway.
  2. the connections are specified in the wordpress backend, so all countries have a section in the backend that lets you choose which 'city' posts are connected to them. What I then need to do is display these cities using a function that is looking up the country post you are on, and displays a list of the connected cities. Sorry, I am very new to these types of function writing, and trying to understand some old code at the same time, so appreciate the help in understanding it.
  3. well, the above function finds a list of all jobs connected to a location. it then creates that list as an echo. I need to do the same with the cities connected to a location. So I need to change the 'connection_type' and 'post_type' args, and while that seems straightforward, it doesnt produce a result. I was wondering if connection_type or post_type needed to be specified elsewhere before they are named in this section of the code in order to pull the list of connected cities. I'm very new, so any help understanding this is very useful.
  4. Hi, I have a series of post to post connections. In one function, the output is a list of the linked post to posts. Here is an example: function countryJob(){ global $post; $echo = f_print(array( 'data' => 'p2p', 'type' => 'ul', 'args' => array( 'connection_type' => 'job_to_location', 'post_type' => 'job', 'connection_id' => $post->ID, 'alternative' => '', ), )); echo '<div class="country-job-text">'.$echo.'</div>'; job, location and city are all post types that can be connected. I want to create the same as above to create a list of the cites connected to a location (locations are the name for posts which are countries) How do I discover the connection type and post type needed to create this output?
  5. Hi, Thanks for the feedback. So I am working with some original code built for the site, so the f_print naming function is some legacy naming, so its taken me a while to work out what the function was doing, as original developer didnt leave any comment either. In terms of the output, I believe it is pulling some div based CSS to create the output in a grid. Here is the code pulled from a different area of the original site where this works: <div class="inner"> <div class="row"> <div class="w6 featured"> <h2>Clients</h2> <div class="content_box clearfix"> <div class="logo_th"><a href="***link***"><img width="70" height="30" src="***source***" class="attachment-logo size-logo wp-post-image" alt="" srcset="***source*** 70w, ***source*** 300w, ***source*** 624w, ***source*** 800w" sizes="(max-width: 70px) 100vw, 70px"></a></div> <div class="logo_th"><a href="***link***"><img width="70" height="30" src="***source***" class="attachment-logo size-logo wp-post-image" alt="" srcset="***source*** 70w, ***source*** 300w, ***source*** 624w, ***source*** 800w" sizes="(max-width: 70px) 100vw, 70px"></a></div> </div> </div> </div> Unfortunately, although i've added the same div's to my echo, it had no result, so it isnt picking them up in the code when I've written it. Do I need to construct a whole new css section to instruct the echo output? thanks
  6. I have a function which finds a list of companies associated with a country from a custom taxonomy. It finds their logo and creates an output which is all logos associated with a country, and the logo has a href to link to a company page. The code for this is: function countryCompanies(){ global $post; $echo = f_print(array( 'data' => 'p2p', 'type' => 'mainlogo', 'args' => array( 'connection_type' => 'client'.$_set['lang_postfix'].'_to_location'.$_set['lang_postfix'].'', 'post_type' => 'client', 'connection_id' => $post->ID, 'alternative' => "", ), )); The f_print function finds the logos, and their sizes. So the 'mainlogo' type is a pull down of the thumbnail at 200px size. What I need to do is write CSS and PHP which will display these results in a grid, 4 colums across, and as many down as results from the array. At the moment all I can get is all the results in one column. What tutorials would I need to write appropriate CSS to create this, and then is it as simple as adding the div prior to the echo of the $echo variable? Thanks
  7. Thanks Barand, setting up the class worked perfectly!
  8. I have a function which echos an array output, which creates links on a page related to that page. It all works well, but the CSS is making the links blue and purple as standard, and I want to overwrite this to make the links white. What can I add to the code to overwrite the style of the echo? The font size is working, but the colour is being overridden. The code I currently have is: echo "<p> <font color='ffffff' size='4pt'>$echo</font></p>"; What am I doing wrong?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.