mhaus-org
Forum Replies Created
-
Found the matter to be related to the link to mail chimp— was not entering the account code in the right places in the WooTheme.
scruffy1,
I am grabbing at straws to find an answer because barely understand this topic. I thought another issue, redirects, is causing this matter but according to you that is not the case.GoDaddy suggested this:
It appears that you are receiving an error in Google Site Analytics about your redirects. Upon review, the error is indicating that the siteurl and home for your WordPress application is http://ruralcreativelife.com. Google is saying that you will need to update that to what they want and generate any redirects from http://ruralcreativelife.com to http://www.ruralcreativelife.com. You can change the siteurl and home from within your wp-admin panel. Since this is something done within the WordPress admin panel, this is something you would need to change and we cannot provide assistance with since it is a third party application.
In the General section my WP and Site URLs do not include “www” and I was going to change them until I got reading the link in this section that talks about how changing them will point to a new directory. I did not make the change.Woo Themes suggested looking into this link:
http://rield.com/how-to/defining-a-canonical-hostname and to contact my host / domain registrar for more details on it. I am doing this right now.Meta descriptions added in Yoast SEO not taking effect in Google search.
SteveW928, Amending those fields have not changed the meta description. Disappointing.
Hi, Newbie here.
Would like to prevent a widget from appearing on a specific page. I looked at the code below but could not figure it out. Might you have a suggestion?A PAGE Page
This section refers to WordPress Pages, not any generic webpage from your blog, or in other words to the built in post_type ‘page’.is_page()
When any Page is being displayed.
is_page( 42 )
When Page 42 (ID) is being displayed.
is_page( ‘About Me And Joe’ )
When the Page with a post_title of “About Me And Joe” is being displayed.
is_page( ‘about-me’ )
When the Page with a post_name (slug) of “about-me” is being displayed.
is_page( array( 42, ‘about-me’, ‘About Me And Joe’ ) )
Returns true when the Pages displayed is either post ID = 42, or post_name is “about-me”, or post_title is “About Me And Joe”.
is_page( array( 42, 54, 6 ) )
Returns true when the Pages displayed is either post ID = 42, or post ID = 54, or post ID = 6.