flyingkites
Forum Replies Created
-
Forum: Plugins
In reply to: [Constant Contact Forms] Please select at least one list to subscribe to.Thanks that fixed it.
I am also having this problem.
The maps are generated and accessible and I have verified correct format.
We are also getting this error.
So it’s been over two weeks now. What is the ETA on a fix?
Forum: Plugins
In reply to: [Category Discount Woocommerce] Discount by Users RoleJust adding I understand it is the Pro version that handles product tags.
Forum: Plugins
In reply to: [Smash Balloon Social Photo Feed – Easy Social Feeds Plugin] Missing ImageI lost all images after that.
After playing with other settings, They came back after I turned off GDPR.
thanks
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Print Table Name and DescriptionHi
We are a non-profit.
For us this means printing the table does not make any sense as people won’t know which table it is.
Is there way to do it by adding a function to our theme?
thanks for your time.
Forum: Plugins
In reply to: [WooCommerce Cancel Abandoned Order] Cash on deliverysee https://github.com/rvola/woo-cancel-abandoned-order/wiki/Add-a-new-gateway
You need to add this code to your theme functions.php
function woa_custom_gateways_hook( $gateways ) {
$gateways[] = ‘cod’; // Delivery for example.
return $gateways;
}
add_filter( ‘woo_cao_gateways’, ‘woa_custom_gateways_hook’, 10, 1 );You should be using a CHILD theme.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Filesize increases with each exportI noticed since the recent upgrades that the file sizes in all my site has doubled. I am using the unlimited extension.
What did you exclude?
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Sitemap cannot be read- general HTTP ErrorI see the first poster’s sitempa is loading
I am getting this.
Error loading stylesheet: An unknown error has occurred (805303f4)
https://www.XXXX.org/wp-content/plugins/google-sitemap-generator/sitemap.xslSee https://welovewp.com/fix-for-error-loading-stylesheet-an-unknown-error-has-occurred-805303f4/
- This reply was modified 4 years ago by flyingkites.
- This reply was modified 4 years ago by flyingkites.
Forum: Plugins
In reply to: [AccessPress iFeeds] Instagram plugin stopped workingI get {“error_type”: “OAuthException”, “code”: 400, “error_message”: “Invalid scope field(s): basic”}
as well
Running WP 5.4
Forum: Plugins
In reply to: [FAQ Schema Markup - FAQ Structured Data] FAQ on PagesForum: Plugins
In reply to: [FAQ Schema Markup - FAQ Structured Data] Add new FAQ not workingMe too. Happened after WP 5.3 upgrade.
Will try to find a fix
Forum: Plugins
In reply to: [FAQ Schema Markup - FAQ Structured Data] Half working, but fixed…Thanks for the code fixes.
Forum: Reviews
In reply to: [Filter Admin Published Default] WordPress 5.7.2You can also just add a code snippet to functions.php
// change page link to display published pages only
function wcs_change_admin_page_link() {
global $submenu;
$submenu[‘edit.php?post_type=page’][5][2] = ‘edit.php?post_type=page&post_status=publish’;
}
add_action( ‘admin_menu’, ‘wcs_change_admin_page_link’ );