Safeer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress posts page navigation not workingIs it working when you use default permalinks structure ?
You will need to edit the template files for this, please look in to the header.php file in your theme
Forum: Fixing WordPress
In reply to: Moving wordpress files Local to CpanelHi,
Yes, you can move your local files to cpanel, you will also need to import the database and edit wp-config.php
This tutorial may help
https://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-from-local-server-to-live-site/Forum: Fixing WordPress
In reply to: Help Choosing Shopping Cart for Complicated Product SetupI’m not sure about any ready made solution for this, will need to customize this. Checkout the WC product bundle plugin.
https://www.woothemes.com/products/product-bundles/You can add custom fee to cart like this
https://www.thecodepoetry.com/update-woocommerce-cart-price-with-code/Thanks
Forum: Fixing WordPress
In reply to: Page won't show up under tagCan you please link me to your page ?
Forum: Fixing WordPress
In reply to: White Screen on blog pageTry increasing memory limit
add in wp-config.php
define('WP_MEMORY_LIMIT', '128M');
Try disabling all plugins
Forum: Fixing WordPress
In reply to: Can't see login page after automatically update to 4.0Hi,
Please try deactivating all your plugins by renaming the plugin folder
enable debug mode by adding this code in your wp-config.php
define('WP_DEBUG', true);
Forum: Fixing WordPress
In reply to: Page not working after wordpress 4.0 installHi,
Please try increasing memory limit. Try this in your wp-config.php
define(‘WP_MEMORY_LIMIT’, ‘128M’);
Try deactivating all your plugins by renaming the “plugins” folder
Forum: Fixing WordPress
In reply to: Help! Site gone crazyHi Arjun,
As you are using a premium theme it would be better to check with the theme developer.
Thanks
SafeerHi,
Please try increasing memory limit. Try this in your wp-config.php
define(‘WP_MEMORY_LIMIT’, ‘128M’);
Try deactivating all your plugins by renaming the “plugins” folder
Forum: Fixing WordPress
In reply to: Pages are not displaying in Live mode and gives 404 Not found errorHi,
Please try resetting permalinks in Settings > Permalinks
Make sure .htaccess is writable and is updated
Check how it works with default permalink structure.Forum: Hacks
In reply to: hook to end of a page or post?Hi,
If you mean to hook after page/posts content, please try like this
add_filter( 'the_content', 'my_custom_data' ); function my_custom_data($content) { return $content.'My contnet'; }
Safeer
Forum: Plugins
In reply to: [WooCommerce 1.6.5] Add a fixed fee to the cart totalYou can use the “woocommerce_before_calculate_totals” hook and add additional fee to cart like this.
$woocommerce->cart->add_fee( 'Additional Fee', $addfee, $taxable = false, $tax_class = '' );
Checkout here for more details
https://www.thecodepoetry.com/update-woocommerce-cart-price-with-codeGreat ! That worked !
Thanks a lot for the excellent plugin and awesome support.
Cheers!
Thank for the response !
I have update the plugin to the latest version and now mails are not sending at all..
The function is plugged correctly to divert emails via your SMTP and all the 1500+ subscribers are active.
I could send a test mail to all these 1500+ mails with a custom script, So i guess there wont be any server side limits.When i am trying to send mail from the “Send email” option in the subscriber2 the preview message is sending successfully but getting this error when sending mails to all,
Message failed! Check your settings and check with your hosting provider
SMTP Error: Data not accepted.SMTP server error: Too many recipients, max is 1000