Shailesh
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] Breaking woocommerce default noticesHi,
This was a plugin bug. I have checked plugin and removed their one line. I know this is not good solution but I has no choice. I even can’t remember what I did because it was approx 5 to 6 months ago.
May be they have new version and it should work.
Thank You.
Forum: Plugins
In reply to: [WooCommerce] Multiple Paymetns for one OrderThanks for reply.
I am not looking for any particular payment gateway.
What I mean was user can pay anytime and they can select any payment gateway which is already installed.Like suppose you set status Pending Payment you should see link in my account page with Pay. With click on this button you can pay amount.
So I need this feature but I also want to split payment so I can set 3 or 4 milestones for user to pay..
Forum: Plugins
In reply to: [Login for Google Apps] Can't get access tokenThanks for reply.
Sure I will try as you describe and will email you if It will not work.
Thanks.Also same problem here. Paypal express checkout redirect to cart page on place order.
Forum: Networking WordPress
In reply to: Remove multisite and set sub domain as main siteThank You so much. I’ll definitely try this.
Forum: Plugins
In reply to: WordPress plugin DB upgradeI got the answere
$db_version = get_option( 'my_plugin_version' ); if ( version_compare( $db_version, '1.1', '<' ) ) { // Initial update code added in 1.1 } if ( version_compare( $db_version, '1.2', '<' ) ) { // Additional update code added in 1.2 } if ( version_compare( $db_version, '1.3', '<' ) ) { // And so forth } update_option( 'my_plugin_version', '1.3' );
Forum: Fixing WordPress
In reply to: Best method for backing up site/databaseTry plugins…
Personally i suggest this one
https://www.ads-software.com/plugins/backwpup/Forum: Fixing WordPress
In reply to: Display list of child pagesThis is for pages….
If you want it for posts than search out for get_posts() function…
Forum: Fixing WordPress
In reply to: Display blog dates (Wootique theme)In loop you can use https://codex.www.ads-software.com/Function_Reference/the_time this function. You can also use it in single page template…
Forum: Fixing WordPress
In reply to: How to pull current page URL for social share buttons?Yes, Its perfect…
Forum: Fixing WordPress
In reply to: How to pull current page URL for social share buttons?For single post or page or in loop you can use get_permalink().
If you want this on all pagesYou can use php server variables…
$current_url = "https://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
Forum: Fixing WordPress
In reply to: Display blog dates (Wootique theme)In single.php use the_date function…
https://codex.www.ads-software.com/Function_Reference/the_date
Forum: Fixing WordPress
In reply to: Plugin disappeared, but cannot reinstall. Why?Its cause of plugin directory is not removed from server…
You cant see it in plugin list because dir has no files. Its empty.
So delete all in one seo dir manually via ftp or what you are use ….file manager…Forum: Fixing WordPress
In reply to: Warning: Cannot modify header informationIts look like all perfect in functions.php
What i suggest is install new wordpress and then upload theme… And if it works than one by one all plugins….
This is what have esmi suggest but try it once clear all cache and try again…Forum: Fixing WordPress
In reply to: Warning: Cannot modify header informationPaste your functions.php in pastebin and please provide link here…