matt adams
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: title_tag causing array to string conversion errorIts the PHP Variable of $page
@anton Keller, try this:if(is_admin()) { if( function_exists('acf_add_options_page') ) { function wake_acf_add_options_page(){ $acfpage = acf_add_options_page(array( 'page_title' => 'WAKE Réglages', 'menu_title' => 'WAKE', 'menu_slug' => 'wake-general-settings', 'capability' => 'edit_posts', 'post_id' => 'wko', )); } add_action('init', 'wake_acf_add_options_page'); } }Forum: Plugins
In reply to: [Theme My Login] Selective redirectWe did. But since shut it off.
Forum: Plugins
In reply to: [Theme My Login] Selective redirectNo, trying to push them back to the cart review page on a shopping cart (Woo Commerce).
Forum: Plugins
In reply to: [Theme My Login] Selective redirectSoo why is it then?
IF i use a URL with the redirect_to it still pushes the user to the specified redirect on the TML redirect option for that user level. If i shut TML off the redirect_to is fine.
Forum: Plugins
In reply to: [Jigoshop] Add To Cart – No Items AddedAdditionally, once items do indeed show up in the cart, if you attempt to remove them, they will still be there even after a few refreshes.
Forum: Plugins
In reply to: [Jigoshop] Add To Cart – No Items AddedFor the issue on NatNast, in chrome if you add an item to the cart its fine. Safari and Firefox there is a massive delay. As in I add an item to the cart, it says Success, but also cart empty. If I click around the site, and come back the product is eventually in the cart.
Error logs show nothing.
Forum: Hacks
In reply to: How to assign a Page Template to certain URL Patterns?Got it. Thanks matt.
Im doing something similar to your original request but dont want to have to create all the duplicate pages down the line. I think i have it sorted out to wildcard match the permalink and the parent page will drive which template header to grab with an action hook.Forum: Hacks
In reply to: How to assign a Page Template to certain URL Patterns?He Call_Me_Matthew, I’m interested in what your alternative was for this.
Care to share?Forum: Plugins
In reply to: [Diverse Solutions IDX Real Estate Listings & MLS Search] Too many redirectsWho do we need to to call to get some support? I have an email in, this thread and left a message with support and nothing.
I shut off HTTPS and now it says the IDX key is inactive.
This tools seems to be a mess and poorly supported.
Forum: Plugins
In reply to: [Diverse Solutions IDX Real Estate Listings & MLS Search] Too many redirects?
Forum: Plugins
In reply to: [Diverse Solutions IDX Real Estate Listings & MLS Search] Too many redirectsSo what I am hearing, is that the IDX pages will not work because the HTTPS on our site, which is a major deal with both SEO and ecommerce for this site.
other IDX pages include:
https://trellisaz.org/idx/listings/arizona-homes-for-sale/
https://trellisaz.org/idx/listings/search-mls/So is that SSL issue also a reason why the next page or single views of homes dont load with the same redirect error?
Forum: Plugins
In reply to: [Diverse Solutions IDX Real Estate Listings & MLS Search] Too many redirectsActually that didnt really fix it, and on closer inspection running the 2015 theme, we still have the same code issue of the img src missing the closing >.
The vertical align css just moves the overhanging html to no longer been seen with the overflow:hidden on the ds-media div.
The HTML view source from this plugin still shows a missing > regardless of the theme.
So this is really strange. We are using foundation for our grid, and foundation has:
img {vertical-align: middle;}If i add to our css:
img {vertical-align: inherit;}all is well.
That has to be the strangest thing i have seen in a long time.Thanks.
Okay so it is our theme.But i have never in my 8 years of developing custom themes see a theme break the HTML output of a plugin. My pastbin shows that the IMG tag is clearly not closed.
Any ideas how thats possible?