anatoly14
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Adding Rel=”tag” to Tags LinksFigured it out. For anyone who is curious:
Open up plugin folder go to Templates > Design Manager > [DESIGN THAT YOU CHOSE FOR EXAMPLE DESIGN 2] > Elements > meta-taxonomy.phpFind the following line:
echo ('<span class="amp-tag-'.$tag->term_id.'"><a href="'.esc_url($tag_link).'" >'.esc_html($tag->name).'</a></span>');
and change it to:
echo ('<span class="amp-tag-'.$tag->term_id.'"><a href="'.esc_url($tag_link).'" rel="tag" >'.esc_html($tag->name).'</a></span>');
- This reply was modified 5 years ago by anatoly14.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Adding Rel=”tag” to Tags Linksrel=”tag” showing up fine in the regular version, but not in amp.
Forum: Plugins
In reply to: [Autoptimize] Define Path is not workingPerfect! Put it all the way at the beginning of wp-config and it worked!
Forum: Plugins
In reply to: [WP eCommerce] PHP Upgrade 7… errors…In the ajax.php file add the following before the line 596:
$error_messages = array();
This will fix the error.
Had the same issue on my marketing1on1.com website.
Forum: Plugins
In reply to: [WP eCommerce] PHP 7.1 WarningFixed it by adding:
$args = (array) $product;
above the line 354
Forum: Developing with WordPress
In reply to: Display Page Title / NameGot it to work. Didn’t realize that text widgets don’t recognize php, so I just added the following code to the functions.php
add_filter(‘widget_text’,’execute_php’,100);
function execute_php($html){
if(strpos($html,”<“.”?php”)!==false){
ob_start();
eval(“?”.”>”.$html);
$html=ob_get_contents();
ob_end_clean();
}
return $html;
}Works fine now
Forum: Developing with WordPress
In reply to: Display Page Title / Name@bcworkz tried using <?php wp_title(); ?> still no go.
Forum: Developing with WordPress
In reply to: Display Page Title / Name@sterndata can you explain a little more in detail?
Forum: Plugins
In reply to: [WooCommerce] Add To Cart Ajaxanyone?
Forum: Plugins
In reply to: [Photo Gallery by Supsystic] Next ButtonsFor some reason now the rest of the images do not open in popup
Forum: Plugins
In reply to: [Photo Gallery by Supsystic] Next ButtonsGot it, thanks
Forum: Plugins
In reply to: [Photo Gallery by Supsystic] Next ButtonsIf you look on the left top corner on your “fixed” example, there are two arrow buttons. For some reason ours doesn’t have that.
Example:
https://www.rfwheels.com/bmw/Forum: Plugins
In reply to: [WP eCommerce] Credit Card Subscriptions?Awesome, last question, does the plugin offers user dashboard where they can log in and cancel subscriptions?
Forum: Plugins
In reply to: [WP eCommerce] Credit Card Subscriptions?How come does it say Note : Membership plugin only works with PayPal recurring billings
Forum: Plugins
In reply to: [WP eCommerce] Ban Users or add IP address to purchases?Thanks! Anyone else have any input?