Simone
Forum Replies Created
-
AuthorPosts
-
Hello, please set the permalink structure (in the wordpress Settings) to postname and test it back
you should be good to go with this (place it in your child theme’s functions.php)
add_filter('geodir_detail_page_tab_list_extend', 'tab_link') ; function tab_link($tab_link) { $custom_url= geodir_get_post_meta($postid,'geodir_customurl',true); $tab_link['tab_link'] = array( 'heading_text' => __('<a href="'.$custom_url.'">TAB LINK</a>',GEODIRECTORY_TEXTDOMAIN), 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'tab_link') ); return $tab_link ; }
instructions:
-create a custom field named customurl and paste an url
-change the “TAB LINK” to whatever you want to be the textThis reply has been marked as private.You can find the .po in /wp-content/plugins/geodir_claim_listing/geodir-claim-languages
then once you change the strings, you need to create a folder named geodirclaim in /wp-content/languages and put the .po and .mo files in there
Hi, have you enabled the post type in the listing claim settings?
See attachDecember 11, 2014 at 10:10 pm in reply to: Need Expert for wpgeodirectory setup and finishing #24137No problem, got your email, will reply soon
cache plugins are evil 🙂
soon with the new GD update you could use GD Booster. Just be patient 🙂
I don’t know what you did recently.. try to think what you did or if you activated some plugins
Great 🙂
If you meant that, you won’t see the “advanced search” because it is assigned to EVENTS only. Ive placed the ADVANCED SEARCH widget in the Events page, so you will see the button appearing with the date. Go to the events page and you will see it on top.
PS- you did something on your website that is messing up the layout.
Hello,
you mean you want to a dd the custom search to show the search by date?Hello, this will require some custom code…however, a Buddypress addon is on the to-do list, stay tuned 🙂
you can use the custom search in combination with your custom fields, so the listings could be filtered.
Here you can find a short explanation
http://docs.wpgeodirectory.com/category/addons/search-filters/This is a tutorial that explains how A tag works.
http://www.w3schools.com/tags/att_a_href.aspyou just forgot to add the text in the link 🙂
between the<a>
and
</a>
you need to put a text, and this text will be clickable..now I’ve add “link 1” and “link 2”, replace it with the text you want.
-
AuthorPosts