Kiran
Forum Replies Created
-
AuthorPosts
-
Hi Joy,
The logic i used will not display link if there is blank value for email field.
See attachments.
1) With email
2) Without emailLet us know.
Thanks,
KiranHi Konstantinos,
FYI: we have now merged all the geodirectory functionality into the UsersWP core plugin.
This will be in next release.You can download & test development version from here https://github.com/kprajapatii/userswp
Thanks for your patience 🙂
Kiran
Hi Kathy,
The jQuery Chosen loaded via WP Editor plugin causing conflicts with GeoDirectory jQuery Chosen.
Please add following code snippet in your theme functions.php or via any snippet plugin. This snippet will fix the conflict.function _gd_custom_fix_chosen_conflict() { if ( defined( 'GEODIRECTORY_VERSION' ) && is_admin() && wp_script_is( 'geodirectory-choose-ajax', 'enqueued' ) && wp_script_is( 'chosen', 'enqueued' ) ) { wp_deregister_script( 'chosen' ); wp_register_script( 'chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array( 'jquery' ), GEODIRECTORY_VERSION ); wp_enqueue_script( 'chosen' ); } } add_action( 'admin_print_styles', '_gd_custom_fix_chosen_conflict', 1000 );Thanks,
KiranHi Kathy,
There is a jQuery Chosen javascript causing conflicts and breaking settings page.
Let us provide FTP credentials so we can look into more and fix it.
Kiran
Hi Joy,
You have used incorrect logic in code. You have missing opening & closing PHP tags.
I have updated snippet code in your widget:<?php global $post; if ( ! empty( $post ) && ! empty( $post->geodir_email ) ) { ?> <a href="javascript:void(1);" class="b_send_inquiry2" onclick="jQuery('.b_send_inquiry').click();">Send Enquiry</a> <?php } ?>Thanks,
KiranThis reply has been marked as private.Hi There,
There are two font-awesome css files are loaded, one via plugin and one via theme. Third one is not a css file it is a font file loaded via font-awesome css file.
I have added snippet under Snippets > “Remove Font Awesome css loaded by GeoDirectory Framework” to dequeue the css file loaded via theme. So now site only loads one font-awesome file.
The message “GD Booster had a problems finding ” will be fixed in next release. It shows because style loaded externally.
Thanks,
KiranDecember 12, 2017 at 7:33 am in reply to: Non-FaceBook or Non-Yelp address mistake causes hangup #409185Hi Stephen,
The problem has been fixed and will be available in next release.
Kiran
Hi James,
Twitter & Facebook sharing problem has been fixed.
For GD Booster i have changed advanced-cache.php file permission to 666 and now it does not shows error on activating GD Booster.
Let us know.
Thanks,
KiranHi James,
The problem has been fixed.
Let us provide FTP credentials so we can update patch and check on your site.Kiran
Hi Mandy,
After doing some debugging found that the problem is coming from child theme template file. It seems template file /themes/boss-child/woocommerce/single-product/related.php is not compatible with current WooCommerce or it has something wrong.
I tried to use default template /plugins/woocommerce/templates/single-product/related.php by copying there and it worked fine.If you have noticed on other pages site has footer but on http://108.61.123.162/marketplace/sample-auction-item/ page it does not shows the footer.
The reason behind footer breaking is your template file /themes/boss-child/woocommerce/single-product/related.phpPlease contact theme developer to get more help on this problem.
Thanks,
KiranHi Marwan,
I have changed “projects” to “link_business” in php inserter > your custom code and now it is working fine.
Thanks,
KiranHi Mandy,
It seems something breaking footer content, and that’s why GD plugin raises JS errors. Because those JavaScript are loaded in footer. You can check in page view source the BODY & HTML are not closed
Even you can see JS error “ReferenceError: check_condition is not defined”.Let us provide FTP credentials so we can look into more.
Kiran
December 11, 2017 at 6:59 am in reply to: Social Importer for gd_deal – Images not importing #409038Hi Alphonso,
The problem has been fixed and patch updated on your site too.
Please check after clearing your browser cache and let us know how it goes.Thanks,
KiranHi Josh,
The problem has been fixed and it will be available in next release for Review Rating Manager.
Let us provide FTP credentials in a private if you want us to update patch on your site now.Thanks,
Kiran -
AuthorPosts