kpenn
Forum Replies Created
-
Use the following method:
1. Go to Google Analytics >
2. Click Admin >
3. Click Create New Property *HERE IS THE SOLUTION — while adding property details click “Show advanced options” and enable “Create a Universal Analytics property” > Click radio button for “Create a Universal Analytics property only” and then click “Next” to complete process as you would.Go back to you WP dashboard and under the plugin’s general settings — 1. Click “Clear Authorization” > 2. Click “Clear Cache” > And 3. authorize the plugin as you would a fresh install.
Hope this helps many. If so, pay it forward by sharing your solutions.
- This reply was modified 4 years, 1 month ago by kpenn.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Bounces / Bounce SettingsAlso — It seems that I handled bounces successfully BUT it only checked a batch of 30; as it was set in the max emails field.
It did not appear to continue checking the list after the specified 30.
I would like to check my entire list of 10,000+. Would editing the alo-easymail-bounces.php, line 27 (‘bounce_maxmsg’ => 30) to the exact number I need to check cause a problem?
Thanks.
Forum: Plugins
In reply to: [WP Import Export Lite] Exporting Yoast SEO meta dataThank you. I sent an email directly to the address you’ve provided above.
Forum: Plugins
In reply to: [WP Import Export Lite] Import Yoat SeoExporting WordPress Posts: I’m trying to map Yoast SEO meta but not able to identify or see Yoast SEO fields. I tried the method described above (Export Migrate Zip) but still no Yoast fields included. Any suggestions? or would their be a generic list of Yoast SEO identifiers Thank you.
Forum: Plugins
In reply to: [Yoast SEO] Error after update to v14.0.1I’m getting the same exact error message after updating the Yoast SEO plugin:
Warning: in_array() expects parameter 2 to be array, null given in ///wp-content/plugins/wordpress-seo/src/helpers/robots-helper.php on line 27.
I too offer a “thank you” in advance for any help or a fix for this.
Forum: Plugins
In reply to: [Timed Content] Greeting based on time of day (Morning, Afternoon, Evening)Understood – thanks for your reply.
- This reply was modified 6 years, 7 months ago by kpenn. Reason: Replying as resolved
Forum: Plugins
In reply to: [WooCommerce] Paypal Custom Payment Page Style not workingSame issue here- have you found a fix? If so, please share.
Resolved
Got it!
Used is_page() in child’s content-page.php
In content-page.php CHANGED:
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h1 class="entry-title"><?php the_title(); ?></h1> </header>
TO THIS:
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if(!is_page()): ?> <header class="entry-header"> <h1 class="entry-title"><?php the_title(); ?></h1> </header> <?php endif; ?>
Now the page titles are removed from the actual pages but show up to help identify the page in search results.
Again, thanks for the point in direction.
There we go – looks like a good point in direction. About to check it out. Thank you.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Hide shortcode on mobile deviceDid you try setting the width to 100% instead of 720px so it would scale down when in responsive mode?
[li_recommendations width="100%" length="200" interval="6500"]
Thank you for that tip (display: none; also hides from Googlebot) – made adjustments and worked fine.
I am using fire bug, that is how I located .page entry-title and .page entry-header.
Problem being
.page .entry-title { position:absolute; top:-9999px; left:-9999px; } .page .entry-header { position:absolute; top:-9999px; left:-9999px; }
Also removes/hide “Page Title” and “Featured Image” from page list populated in search results or “Archive”.
Thinking some sought of conditional code (?code) may need to be added to php file (?file) – so it would only show “Page Title” and “Featured Image” in “Archive” but not on actual page. (would like for title and featured image serve as page preview in archive as they do for blog post on blog page but again, remain hidden on actual page)
Yes I’m using a child theme – thank you.
Not sure about this plugin may need another approach – strips <p>,
etc.Thanks for responding – it’s appreciated.
Yes, I am using a child theme.
I just came across “Embed Javascript” plugin by Bogdan. So far so good – the images are finally changing when I rollover the text buttons.
Do you know if using this plugin or any like it would be putting me at risk for future conflicts? Would I be better off with another approach?
FYI – this only one that seemed to work for me so far BUT it hasn’t been updated in over 2 years
Again, Thanks!