Richard Aber
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding categoriesIf you’re looking to display the categories widget only on select pages, you could look into Jetpack’s Widget Visibility module.
Here’s what appears to be happening from what I can observe.
You appear to have an image named “Square-Wrap.jpg,” and a post named “Square Wrap.” This is causing a collision, because they both have the same “slug” of “square-wrap.”
Because these two items have the same slug, you’re not seeing the template output that you’re expecting. You expect to see a single post, but instead you’re seeing an attachment template.
Immediate relief can probably be obtained by editing the “slug” of the attachment, in order to make it unique.
Briefly you would locate the image in your Media Library under Media > Library, click it to open the Attachment Details modal, choose the “Edit more details” link, locate the “Slug” metabox. Change the slug to anything but “square-wrap,” and update the attachment. Please refer to https://codex.www.ads-software.com/Edit_Media under “More Edit Media Options.”
A better, long term solution might involve changing your site’s permalink structure to minimize this risk, and certainly keep in mind going forward that similar post, page, and attachment names can trigger this sort of issue.
Forum: Fixing WordPress
In reply to: Blog page stripping posts and imagesThe best place to find support for a premium (purchased) theme, is from the theme authors themselves.
Try contacting them through their website:
https://help.mnkythemes.com/Forum: Themes and Templates
In reply to: Removing header image from Affle themeThe best place to find support for a premium (purchased) theme, is from the theme authors themselves.
Try contacting them through their website:
https://www.mojo-themes.com/item/affle-responsive-portfolio-wordpress-theme/#mojo-commentsForum: Fixing WordPress
In reply to: Redirecting URL MixupDo you have SSH and/or SFTP access to site 2?
If so, you can try manually overriding the home url and site url settings in your wp-config.php by defining the constants WP_SITEURL and WP_HOME.
define( 'WP_SITEURL', 'https://agoraonline.ca' ); define( 'WP_HOME', 'https://agoraonline.ca' );
Then you should be able to access your wp-admin again so you can change those values back to what they should be under general settings.
https://codex.www.ads-software.com/Editing_wp-config.php#WordPress_address_.28URL.29
Forum: Fixing WordPress
In reply to: Rss feed not displaying full post textThere is a setting for controlling RSS feed behavior in your Dashboard, under Settings > Reading.
Check to see if the setting “For each article in a feed, show” is set to “Full text.”
If not, change it to “Full text” and click the “Save changes” button at the bottom of the page to update the settings.
Forum: Fixing WordPress
In reply to: Adding categoriesYou can add category links directly to your navigation menu from the Appearance > Menus panel of dashboard. https://codex.www.ads-software.com/Appearance_Menus_SubPanel
There’s also a categories widget, which you can add to your sidebar in the Appearance > Widgets panel of dashboard. https://codex.www.ads-software.com/Widgets_SubPanel
Forum: Fixing WordPress
In reply to: Change Title Text in WordPress via htmlI believe that most SEO plugins have settings that can overwrite your site’s
<title>
tags (which is what displays on your browser tab).You may want to look at your All in One SEO Pack and/or Squirrly WordPress SEO plugin settings, to see if one or both of them are overriding your site’s
<title>
tags.As a side note, it appears you have some PHP being output to the browser above the DOCTYPE, looks like a function dealing with your slider may be the cause of the issue.
Forum: Everything else WordPress
In reply to: Facebook link not workingIf I recall correctly, that functionality is provided by the Facebook plugin for WordPress: https://www.ads-software.com/plugins/facebook/
If that plugin is installed, the Facebook post may be blocked by privacy settings: https://developers.facebook.com/docs/wordpress/embedded-posts#faq-nocontent
Forum: Fixing WordPress
In reply to: Keeps logging out after migrationIt appears that your site has a mixture of “mumsclub.co.uk” and “www.mumsclub.co.uk” intermingled throughout the content.
The front end quite clearly directs to and displays at “mumsclub.co.uk” (no www).
The issue you describe may be an indication that the auth cookie was set at “www.mumsclub.co.uk”, but when you’re viewing the front end at “mumsclub.co.uk”, the “www” auth cookie might not apply.
You might be able to correct the behavior simply by logging into your dashboard from a non-www URL.
Forum: Fixing WordPress
In reply to: My post text has disappearedHello,
I see text on your blog. Did you manage to resolve this yourself?
Forum: Fixing WordPress
In reply to: In-text ads suddenly appears all over my blog. Was my blog hacked?I do not see the green ad links described in the content.
Is there a specific post that you are seeing this behavior on?Forum: Everything else WordPress
In reply to: Comments not appearing on blog postsYou may want to review the Avada theme’s documentation site at https://theme-fusion.com/support/documentation/avada-documentation/.
Try searching there for the word “comments.”
This document looks like it may be directly related : https://theme-fusion.com/knowledgebase/avada-3-4-3-wrong-comments-displaying-comments-showing/
Forum: Fixing WordPress
In reply to: All I see are lines of code on all pages when in Edit mode.Have you tried disabling the “CKEditor for WordPress” plugin?
It appears that others may be having similar issues with that plugin since upgrading to WP 4.0.
On some local development environments I have had to set the FS_METHOD constant in wp-config.php to enable updates. Try setting
define('FS_METHOD','direct');
in wp-config.php and see if that helps.https://codex.www.ads-software.com/Editing_wp-config.php#WordPress_Upgrade_Constants