mohammad-mursaleen
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Dashboard Quotes] Use in TemplateWill add short-code for this. Sorry for late reply and thanks for trying this plugin.
Forum: Plugins
In reply to: [WooCommerce] Add Item to CartYou can avoid this sort of error by keeping your “Add to cart” button (or what ever you are using) disabled initially and enable it using jQuery only if some product is added.
Also I think you can try this as well;
add this to theme’s functions.php
add_filter (‘add_to_cart_redirect’, ‘redirect_to_checkout’);
function redirect_to_checkout() {
global $woocommerce;
$checkout_url = $woocommerce->cart->get_checkout_url();
return $checkout_url;
}Refrence : Stackoverflow
Forum: Plugins
In reply to: [WP Family Tree] error with create family treeJust a quick fix:
At the bottom of “includes/custom-meta-box.php”; wrap the fopen thing in condition to perform check if file in that path exist like this;
if (file_exists($filename)) { if (!$handle = fopen($filename, 'w+')) { echo "Cannot open file ($filename)"; die; } // Write $somecontent to our opened file. if (fwrite($handle, $somecontent) === FALSE) { echo "Cannot write to file ($filename)"; die; } fclose($handle); }
Hope this might help someone out there.
Forum: Plugins
In reply to: Wooexpert Launched New WordPress Contact Slider PluginOh great. Going to use it in my next site.
Forum: Plugins
In reply to: [SimpleModal Login] "Cookies not enabled" error in Chrome onlyThanks jacek606 for saving my day! ??
For Anyone searching for integrating BuddyPress with Geodirector follow the link below;
https://www.ads-software.com/support/topic/future-potential?replies=3#post-5895714
Hi Embraer!
I am working for a client using Geodirectory frame work who wanted to integrate BuddyPress in it. After a lot of research I found this bp-template-pack plugin to add compatibility to GD theme.https://github.com/boonebgorges/bp-template-pack
With just little HTML and CSS tweaks you will be able to integrate BuddyPress support in no time. Hope this would help.
Forum: Plugins
In reply to: [CSV Importer] The more posts are imported the less you can importWe are having the same issue. I have been using this awesome plugin since last 6 months but now in every alternate upload we get error… then we restore our backup and keep trying.
Is there a way to fix this?
We have observed that the more database is getting huge the more we are facing Fast CGI error issue on IIS.
Any help in this regard will be appreciated.
Forum: Plugins
In reply to: [Related Posts by Taxonomy] Want to custom image sizeYp I mean related clips and I have changed the layout and info to be displayed in related clips(related posts).
By the way I just figured out that you were sending image size as ‘thumbnial’ in one of the arrays and by replacing that with my custom image size ‘thumb_site’, Things seems to work fine.
Would you like to add something?
Thanks Nico.
I have removed a lot of unnecessary plugins from my site and now every thing is fine.
Forum: Reviews
In reply to: [Captcha] Useless 100% out datedWith due respect we must honor each of the member in this community especially those who are contributing to this opensource platform.
I know it feels really bad when something doesn’t work for us. But there are more constructive ways to deal in such situations.Most simple is to report the bug so that millions of user can benefit from if it get fixed.
Its good to know that you found some replacement…. keep WordPressing and Love the community!!
*want to show all terms of the respective taxonomy
Typing error….
Thanks bobibrown for giving the idea to integrate captcha (https://www.ads-software.com/extend/plugins/captcha/) in WP User Frontend.
I Just edit the plugin to make it work and voila!
You can download the edit version from this link.
If any one interested to do that just replace “wpuf-add-post.php” in the plugin file with the one I’m providing in the link.
Don’t forget to download captcha (https://www.ads-software.com/extend/plugins/captcha/)
Forum: Plugins
In reply to: [Really Simple CSV Importer] Suddenly the importer stoped to show attachmentsSorry for late response; just solved the issue. Thanks!
Thanks for the reply. Went through one of your support topics and figured the solution. Now every thing is working fine.
BTW thanks for this AWESOME plugin!