indyjoey
Forum Replies Created
-
Forum: Plugins
In reply to: [CMS Page Order] PHP Warning: Declaration of PO_Walker::start_elActually, temp fix posted previously. The fix can be found here…
https://www.ads-software.com/support/topic/fix-strict-standards-issues/
Would be great to see this officially patched. Its a great plugin.
Forum: Plugins
In reply to: [CMS Page Order] PHP Warning: Declaration of PO_Walker::start_elAlso seeing this issue with PHP 7.
Forum: Plugins
In reply to: [Wordpress Ad Widget] Issue with Image Widget and target="blank"Actually, let me expand a bit more, this seems to related to the selection of “Auto Resize to Max Width?” as well. It seems the “Auto Resize to Max Width?” overwrites the value for the “Open in New Window?” option.
Forum: Plugins
In reply to: [WooCommerce] New endpoints not workingJust to add a bit more info. Woo says the below fixes 404s… which I never had 404s and have applied the latest version… Still no fix for my situation. Seems others are having the exact same issue as well.
Lots of pages 404 error after WooCommerce 2.1 update
This issue is now resolved in the WooCommerce 2.1.1 fix release.
Because we have changed a couple static pages to endpoints in the WooCommerce 2.1 release, the permalinks need to be flushed. This wasn’t done properly in the WooCommerce 2.1 update, therefore you should do this manually in case you have a lot of 404 errors after updating. The upcoming 2.1.1 patch release will fix this issue and no longer requires a manual flush.
Pages included in possible 404 errors are: main shop page, category or tag archives and all of the new endpoints. This also affects conditional functions like is_shop() and that causes plugins relying on that function to no longer function properly.
You can flush the permalinks manually by saving the Settings > Permalinks page, to be found in your WordPress administration panel. After doing this, your pages will work as expected.
Forum: Plugins
In reply to: [WooCommerce] New endpoints not workingHas anyone been able to resolve this issue yet?
Are you using a CDN or Cloudflare? If CDN, make sure that you transfer those. If using Cloudflare, you will likely need to put it developer mode or purge the cache on their servers.
Forum: Plugins
In reply to: [Recent FB Posts] Plugin Stopped PullingI am having the same issue. Although, I cannot share my URL, due to NDA. The last post it displayed was 1 week ago (there are more recent FB posts). So, I cleared cache and now says “no recent Facebook posts to show”. I am uncertain if this is related to upgrading to WP 3.8, but I did update the day after it was released.
Testing the config on the settings page says all is well. It just does not seem to pull any FB posts.
Forum: Plugins
In reply to: [Limit Login Attempts] Same IP address for all users on my siteAre you behind a load balancer?
Forum: Plugins
In reply to: [BE Subpages Widget] Parent/Ancestor ClassesThanks. Looking forward to the update.
On a linux based box? If so… quick redirects will need to be done with rewrite rules via your .htaccess file.
See https://www.simonecarletti.com/blog/2009/01/apache-query-string-redirects/ for details.
Forum: Plugins
In reply to: [BE Subpages Widget] Set order – children still alpha sortedAdd this to your function.php file.
add_filter( 'be_subpages_widget_args', 'be_subpages_menu_order' ); function be_subpages_menu_order( $args ) { $args['sort_column'] = 'menu_order'; return $args; }
Forum: Themes and Templates
In reply to: Split a Custom Menu into parent and child menusFYI… I had no luck getting an answer/direction on this. I ended up using the wp_list_pages and a 3rd party add-on for the second tier (Dynamic Subpages).
I am still very much interested in seeing how that can be done with the newer wp_nav_menu menu.
I would be curious as to whether this will be updated to support this. I am using the new custom menu feature and in need of a separate child menu for sub pages. The Advanced Menu Widget is great but having the ability to have a starting depth would be super huge and one ups what WP has done.
There does not seem to be any documentation or supporting sites for the wp_nav_menu to do a split parent and child menu.
An example of what I am having trouble with is figuring out how to do a parent horizontal menu and a vertical child menu based on the parent that was selected.