fishnaldo
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Constant Contact] Error on feeds pageI’m having the same issue.
Seeing this warning appearing in a number of places.It’s on the Constant Contact plugin settings page:
/wp-admin/admin.php?page=gf_settings&subview=gravity-forms-constant-contact
Screenshot:
https://paste.pics/34XMPAnd on the feeds page:
/wp-admin/admin.php?page=gf_edit_forms&view=settings&subview=gravity-forms-constant-contact&id=4
Screenshot:
https://paste.pics/34XMVWP Version: 4.9.5
GF Version: 2.3.1
CC Add-on Version: 3.1Thanks,
Damien- This reply was modified 6 years, 10 months ago by fishnaldo.
Thanks @coderontheroad
That worked a treat!Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Subscriptions supportHi Oscar.
Thanks for the quick reply.
I don’t know how I missed that when I was reading up on the plugin features.Your help is much appreciated.
Thanks,
DamienThis issue has now been resolved.
Hi,
You’re correct, that is the plugin we are using.
I’ve removed it from the site and the currency switcher is now working correctly again.Thanks for the response.
DamienA quick update on this issue.
The discount from WooCommerce Bulk Discount is not being applied to the products in the Cart Total also.
The discounted amount is displaying next to each cart item but customers are being charged the full price when they check out.Again, this is a very urgent issue, please reply as soon as possible.
Thanks.
Thanks for the update @mantish.
We came up with a work-around that has solved the issue for us for now.Since the move to WooCommerce 3.0 it’s no longer possible to access product attributes using the following syntax:
$product->id
It should be done using the following:
$product->get_id()
Thanks for the snippet. It works a treat.
Hopefully it’ll be added in to the next update of the plugin.Forum: Plugins
In reply to: [Nested Pages] Multisite issuesI have also seen issues on MultiSite where there is an additional menu location added named “Nested Pages”.
Any calls to wp_nav_menu() then result in errors and a timeout. The errors I am seeing are not usable so would be of no use to add them here.Forum: Networking WordPress
In reply to: Multisite (subdirectories) Not DisplayingI’ve finally found the conflict.
The plugin “Nested Pages” had added an additional menu location that was being picked up when I was calling “wp_nav_menu()”.
I am not 100% certain what the conflict was as I was not getting usable errors in the error log.For now I’ve deactivated the “Nested Pages” plugin and everything is working again.
I will try to find some time to get to the bottom of the actual conflict but for now I will need to catch up on some dev time.Forum: Networking WordPress
In reply to: Multisite (subdirectories) Not DisplayingHi Nikolay.
I’ve emailed you with a link to download the zip containing the 2 main and child themes.
Thanks for your help on this!
Forum: Networking WordPress
In reply to: Multisite (subdirectories) Not DisplayingHaving found that it’s the wp_nav_menu() that’s causing the problems I can’t figure out why it is throwing errors.
The wp_nav_menu works fine on the base site. It is registered in the theme’s functions.php and the menu is set up in Appearance -> Menus.
In the child theme that is being used for the /ie/ site I have registered the menus for that site in the functions.php and set up the menu items in Appearance -> Menus in wp-admin. The menu is being called using:
wp_nav_menu( array( 'menu' => 'IE Main Menu - Left', 'menu_class' => 'nav navbar-nav navbar-left', 'depth'=> 1, 'container'=> false ));
Does anyone know if what I’m doing above sounds like the correct way to implement menus on a multisite?
Thanks in advance.Forum: Networking WordPress
In reply to: Multisite (subdirectories) Not DisplayingHi nnikolov.
Thanks for the info.
I’ve figured out the cause of the problem and it’s the way the nav menus were built in the theme that was built by a previous developer.If I can find anything that may be of help to other developers, I’ll update this post.
One thing that did help was changing any instance of
bloginfo('template_url');
to beecho get_template_directory_uri();
Thanks for the help on this. It’s much appreciated.
Forum: Networking WordPress
In reply to: Multisite (subdirectories) Not DisplayingHi @nnikolov.
The sites use the same plugins and I have tried disabling them all but still see the errors on the page.The htaccess is copied directly from the network setup:
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L]
It seems that the problem is probably coming from the sites using the same theme but one site is at the URL root and the other is within the subdirectory /ie/. I think there are paths that will need to change in the theme for referencing assets, etc from the theme that is located at https://fulfil2017.friday.ie/wp-content/themes/fulfil
Should I be using get_template_directory_uri() or bloginfo(‘template_url’)?
I moved to Redirection as recommended by WPMU Dev.
I would have happily upgraded to pro on your plugin but needed a working solution straight away.Great plugin by the way.
- This reply was modified 8 years, 1 month ago by fishnaldo.