Giri
Forum Replies Created
-
AuthorPosts
-
You are welcome..
Try with this code.
Whoop Options -> Custom CSS
.geodir-post-img { display: none !important; }
Please install review rating manager addon to fix that review display issue
Hello Jenny, Sorry it was a bug with Whoop. I have fixed that and applied patch on your website.
Thanks
when i click on that disable ratings on comments it does not save even when i press save.
Can you give us your wp admin login details? Its not supposed to happen.
Q1) Yes you can delete the widgets.
Q2) To restore the widget you have to drag and drop that widget again to that particular widget location
Q3) YesGo here
http://www.supremecityguides.com/wp-admin/widgets.php
Expand that widget (Ex: Popular Categories) and then click “Remove”
You are welcome 🙂
April 15, 2016 at 2:38 pm in reply to: Discounts, Free Trials and Recurring Payments on Preview #163742I’m not really sure what you are trying to do. I just hope this is what you are looking for.
Please remove all your changes from plugins. Its very bad practice.
The following code adds “Hello World” text at the top when the trial days is more than 1. Please change the text according to your needs.
remove_action( 'geodir_publish_listing_form_before_msg', 'geodir_publish_payment_listing_form_before_msg', 1); add_action( 'geodir_publish_listing_form_before_msg', 'geodir_publish_payment_listing_form_before_msg', 2); add_action('geodir_publish_listing_form_before_msg', 'geodir_custom_publish_listing_form_before_msg', 1); function geodir_custom_publish_listing_form_before_msg() { global $post, $wpdb; $req_package_id = isset($_REQUEST['package_id']) ? (int)$_REQUEST['package_id'] : ''; $package_price_info = array(); if ($req_package_id != '') { $package_price_info = geodir_get_post_package_info($req_package_id); } else { if (!empty($post) && isset($post->package_id)) { $package_price_info = geodir_get_post_package_info($post->package_id); } } $sub_num_trial_days_var = $package_price_info['sub_num_trial_days']; if ($sub_num_trial_days_var > 1) { echo "Hello World"; } }
This reply has been marked as private.@Legionnaire,
SD is already a child theme. You cannot create a child theme for SD. So forget my last reply.
I have modified SD theme and applied patch in your website
Thanks
@Legionnaire
I’m really sorry I misundertood your requirement. In your screenshot, you circled “All Franchises” part. So I thought its working in your other themes and not in SD.
Anyway I got your point now.
You have to use this code
function sd_cutsom_change_sidebar_content_order() { return array( 'geodir_edit_post_link', 'geodir_detail_page_more_info', ); } remove_filter('geodir_detail_page_sidebar_content', 'my_change_sidebar_content_order'); add_filter('geodir_detail_page_sidebar_content', 'sd_cutsom_change_sidebar_content_order');
Any particular reason why you use span inside?
I mean
Featured Contractor : number of publish days are 30 (<span id="Featured_Contractor">49.99 USD</span>)
instead of
Featured Contractor : number of publish days are 30 (49.99 USD)
That span part is ruining your layout
@Legionnaire, If you are using Prices and Payments addon, make sure to enable franchise for each package. (Refer attachment)
Edit: I have tested with Supreme Directory and it does work.
April 14, 2016 at 12:49 pm in reply to: Changing Location Switcher/Country, Region or City Hover Colour #163283If thats not work, try with !important tag.
I mean like this
background-color: #555 !important;
April 14, 2016 at 12:48 pm in reply to: Changing Location Switcher/Country, Region or City Hover Colour #163282#mobile-navigation-left .geodir-chosen-container .chosen-results li.highlighted { background-color: #555; }
Replace 555 with your color code;
-
AuthorPosts