stenspect
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Analytics Not Showing for Referred/Paid TrafficThank you.
What would “datalayer” and “gtm.js” do?Forum: Plugins
In reply to: [LiteSpeed Cache] Analytics Not Showing for Referred/Paid TrafficThank you for the reply! What are the excludes for this?
gtag
gtm
gtm.js
dataLayer- This reply was modified 5 months, 1 week ago by stenspect.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] responsive collapse not workingHi, we have the same problem.
Any update or changes to address this?
Could it be CSS or .htaccess related?
Forum: Plugins
In reply to: [Yoast SEO] .htaccess solutions for XML-sitemaps 404 errors don't workI thought it might be a memory issue…might still be. In terms of the 404s, I increased the max number of entries from 1000 to 1500 and this resolved the 404 problem. However, I haven’t found a problem for the News Sitemap which isn’t updating any more.
Forum: Themes and Templates
In reply to: Images not centering – CSS FixHi Guys,
Can you be more specific regarding the code and where to place this in the CSS file? I had no problem centering images until I upgraded to the latest install of wordpress.Best,
ChristenForum: Fixing WordPress
In reply to: Slow Queries – Site CrashI have the same problem. What plugins are you running? Any similar?
I have the following:
Askimet
Disqus
Script Enabler
Feed Wrangler
Google XML Sitemaps
RYO Category Visibility
ShareThis
unFocus.Insensitivity
WP YouTubeForum: Fixing WordPress
In reply to: WordPress 2.6 Image Aligntment Problems: What Doesn’t WorkI had the same problem and did a hybrid of the above to get my images to float right.
I simply changed:
img.right { float:right; margin:0 0 0 12px; }
to
.alignright { float:right; margin:0 0 0 12px; }
Forum: Plugins
In reply to: New Plugin: GoCodes Redirection PluginHas anyone had any problems from a scalability stand point with this plugin? I’m an affiliate marketing and thinking about using, but want to make sure it can handle 1000s of links….
Forum: Plugins
In reply to: Next Page Title for Archives and IndexI just used the following in my title tags (thanks to https://efficienttips.com/wordpress-seo-title-description-tag). Note that I also wrote a Condition Statement that prints the title differently depending on the home page or single post, etc. Paste the below code just before the </title>.
function pageGetPageNo()
{
if (get_query_var(‘paged’))
{
print ‘ – Page ‘ . get_query_var(‘paged’);
}
}Forum: Fixing WordPress
In reply to: Different Page Title for wp_list_pages();Hi all,
I am brand new to PHP and spent a lot of time investigating this issue. I too was displaying the tag line only in my <titles> and wasn’t dynamically serving up the post title in the title tags on single posts. Instead of installing a plug in, I wrote an ‘if then’ statement in PHP. Feel free to use the below code. For the arrorw, use ‘&rauquo’<title>
<?php
if (is_single())
{
bloginfo(‘name’); wp_title();
}?>
<?php
if (is_home())
{
echo ‘GadgetReview » Tech News and Gadget Reviews’;
}?>
<?php
if (is_category())
{bloginfo(‘name’); wp_title();
}
?>
</title>