Vikas
Forum Replies Created
-
AuthorPosts
-
Sorry but database(phpmyadmin) access too in private reply.
July 15, 2014 at 2:23 pm in reply to: Browser not responding while accessing all cities on homepage #8517This reply has been marked as private.July 15, 2014 at 1:56 pm in reply to: Browser not responding while accessing all cities on homepage #8510HI,
Plz send me ftp and database access too in private reply.Thanks
Hi,
Thanks for ur patience.
Here is how u can add new tabs in detail page tab lists.This consists of two steps.
1. The tab itself
2. The content which will appear once user will click on a tab.Lets assume you want to add a tab called ‘New Tab’ and when user will click on that tab a ‘Hello World!!’ content will appear.
To add a tab with label ‘New Tab’ do the following in ur theme functions.php file:
add_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend') ; function geodir_detail_page_tab_list_extend($tab_array) { $tab_array['my_new_tab'] = array( 'heading_text' => __('New Tab',GEODIRECTORY_TEXTDOMAIN), 'is_active_tab' => false, 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'my_new_tab'), 'tab_content' => '' ); return $tab_array ; }
Now for the second part, to show Content when user click on that tab, do this:
add_action('geodir_after_tab_content' ,'geodir_my_new_tab_content'); function geodir_my_new_tab_content($tab_index) { if($tab_index =='my_new_tab') { echo "Hello world!!"; } }
Plz make sure that ‘my_new_tab'(tab index) is same as array index created in first step.
Thanks
VikasHi,
Thanks for spotting this, I have fixed it and it will work fine in next release, meantime Plz put this piece of css code.geodir_form_row ul{ float: left; width: 70%; margin-bottom: 5px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
in
WP-admin > Geodirectory > Designs > scripts > Custom style css code
Please have a look on screenshot attached.Thanks
This reply has been marked as private.sorry that query will not work as it has been changed by forum.
here is the correct query
SELECT *
FROMwp_options
WHERE
option_name
LIKE ‘%payment_method_%’
Hi,
This is really strange.
Plz go to phpmyadmin and point database for this installation, open wp_options table and run this query there.SELECT * FROM <code>wp_options</code> WHERE <code>option_name</code> LIKE '%payment_method_%' LIMIT 0 , 30
1. Delete all the records you see as a result of this query.
2. Deactivate payment manager adon.
3. Activate it again.Please let me know if works for u.
Thanks
I am not sure if u are confused with which post is in with category or how the links are working, so here is the explanation.
/learn/music-schools/ this link will list out all the posts in music-schools category. Now have a look on screenshot, it shows that ‘Acting out’ is in ‘Dram School’ category not in music-schools category.
Please advise ?
Thanks
OK.
I will consider it for sure.Thanks for spotting this.
Hi,
I need database/phpmyadmin access too please.
@justjim, i checked and found that post_type field value is blank in ur csv.
It should not be blank or wrong. If u want to import data for places then value of this column should be ‘gd_place’ .
Thanks
July 15, 2014 at 5:01 am in reply to: screen options not working for place or event detail pages #8484Hi,
I have fixed this issue. It will be included in next release too.
I am really sorry for all these inconvenience.July 14, 2014 at 2:26 pm in reply to: screen options not working for place or event detail pages #8412Hi,
It seems that your admin footer is not loading properly, that is causing a js error.
Plz try to deactivate other plugins.Thanks
Hi,
Plz download attached zip, extract it and upload post_functions.php to godirectory > geodirectory-functions folder.
Let me know if it works fine for u then it will be included in next release.
Plz take backup of your existing file.
Thanks
-
AuthorPosts