codismo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove Blog Title from one pageThe URL to the page in questions will help get an answer.
Forum: Fixing WordPress
In reply to: How To Fix White Black Page ErrorIt’s a “white screen of death”, give this a check
Forum: Fixing WordPress
In reply to: Social media Icons not displayingSounds like the icons font is not loading, either the file is missing or the font loads from an external URL and the browser stops it for security reasons.
Often the reason is that the site is loaded like example.com but the files point to https://www.example.com
Go to WP admin > Setting > General and make sure both “Site Address” and “WordPress address” are the same ( either with “www” or without “www” ).
Forum: Fixing WordPress
In reply to: PRev/Next buttons missingThe URL https://www.irelandbybicycle.com/index.php/2015/06/23/ is a date archive ( listing of posts on a specific date ), not a single post page like https://www.irelandbybicycle.com/index.php/my-blog-is-not-supposed-to-read-like-a-reality-tv-show/
The only pagination the archive would have is if you had more posts on that exact date.
Forum: Fixing WordPress
In reply to: Mobile version – responsiveness NOT workingYou already have the code mentioned by @sixteen, it’s part of the “Nirvana custom CSS”, he asked why did you put it in there.
To fix for mobile you will need to remove that or to add this:
@media (max-width: 800px) { #pg-2-0> .panel-row-style { margin-left: 0; margin-right: 0; } }
Forum: Fixing WordPress
In reply to: I’m the admin but I can’t find my theme-editor in settingsSee if perhaps this plugins works out www.ads-software.com/plugins/wp-editor/
Forum: Fixing WordPress
In reply to: Change Title Tag from To in Tag Div Newspaper theme.If it’s not in single.php it might be in header.php ( near the bottom ).
Forum: Fixing WordPress
In reply to: WP_Query with custom post type in args stopped workingYou’re welcome.
Forum: Fixing WordPress
In reply to: Where do I add JS scripts in header/footer?Sorry, meant to say if you’re not a WordPress developer I’d suggest using the plugin.
Using code you would need to hook into wp_enqueue_scripts, there are examples on that page.
- This reply was modified 7 years, 10 months ago by codismo.
Forum: Fixing WordPress
In reply to: WP_Query with custom post type in args stopped workingForum: Fixing WordPress
In reply to: How to hide Category title in woocommerseYou can just add it in WP admin > Appearance > Customize > Additional CSS.
Forum: Fixing WordPress
In reply to: How to hide Category title in woocommerseHere’s the CSS:
.woocommerce-loop-category__title { display: none; }
Forum: Fixing WordPress
In reply to: Where do I add JS scripts in header/footer?If you are not a developer I’d suggest using a plugin like Insert Header and Footers.
Give WP Hashed IDs plugin a try.
Forum: Fixing WordPress
In reply to: Multiple Plugins for the WebsiteAlmost every plugin will have an effect on the loading time, in some cases it will be barely noticeable and in some cases it would be noticeable.