Archie Makuwa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can not log in to admin panel after trying to change URLWell, I don’t know what you are talking about:
https://www.bringphotography.com/wp-admin is working on my phone. Was that your problem?
Forum: Fixing WordPress
In reply to: Custom Community – can't remove the sidebarYou need to select Categoy1 Page as your current template in your pages. It looks completely fine to me. At the moment your pages could be loading using a different template.
By the way, what theme are you using?
Forum: Fixing WordPress
In reply to: top of every page includes 404 error pageGents,
Your theme is trying to load another remote website within your website. For SEO purposes or worse. I would suggest changing your themes or if you can edit the theme, then you need to find that php code and remove it.
But then again you might wanna read the license that came with the theme. God luck!
It seems more like a server problem… I wouldn’t say it has anything to do with WordPress. I can’t even ping the server – contact your hosting company.
Forum: Fixing WordPress
In reply to: Pretty Permalinks Stopped WorkingRename or delete the old .htaccess file and update or refresh the permalinks. That is known to work.
And yeah – Windows hosting has tendencies like that
Forum: Fixing WordPress
In reply to: Toggle (multiple) categories' visibility, plus Infinite ScrollAjax & jQuery – that is where you should start
Forum: Fixing WordPress
In reply to: Fatal Error After Updating WordPress – No Fixes Work!Your website hosting company should have a backup of your website. Ask them to restore the last working version and try updating with plugins disabled – one step at a time.
If it does not work, maybe it’s time you changed hosting companies.
Forum: Fixing WordPress
In reply to: Hover images-Social Media MenuPut them in:
<ul class="my-socials"> <li><a id="roll_one" href="LINK-URL">Facebook</a></li> <li><a id="roll_one" href="LINK-URL">Twitter</a></li> </ul>
Then they will display in a list format
Forum: Fixing WordPress
In reply to: WP Page Navi BugCannot find host. Is that the correct url?
Forum: Fixing WordPress
In reply to: Remove static headerHi,
That is a paragraph with class=”demo_store” and the style is available in your CSS (line 1693) and you will break your theme ??
BUT!!!!!!!
I see you are using WooCommerce, that feature can easily be turned on or off from the WooCommerce admin panel:
WooCommerce | Settings | Enable site-wide store notice text (turn if off)Forum: Fixing WordPress
In reply to: Help! Website uneditable after installing pluginWas that on a local or live website? What is your current file permission setup?
Forum: Fixing WordPress
In reply to: report on an inappropriate blogThis is not the place dude… and what were you doing looking for his website?
Forum: Fixing WordPress
In reply to: I have a grey screen and cannot diagnose whyWell,
you site is only loading the page header and some css. What changes have you made? Try reverting to a default Worpress theme (twenty eleven or something)
Hmm,
It shouldn’t be that difficult really, edit your WordPress (wp-config.php) with the correct settings (for you live server)
/** The name of the database for WordPress */ define('DB_NAME', 'your_database'); /** MySQL database username */ define('DB_USER', 'root'); /** MySQL database password */ define('DB_PASSWORD', 'password'); /** MySQL hostname */ define('DB_HOST', 'yourlivehost');
Edit you database (siteurl) & (home) – this could just be your problem.
Forum: Fixing WordPress
In reply to: Next and Previous page showing wrong pagesSometimes plugins are not the best thing in the world…. sometimes. #No offence to anyone.
I would suggest using the following php code in your website:
<nav id="nav-single" class="group"> <ul> <!-- for previous --> <?php if (get_adjacent_post(false, '', false)): // if there are older posts ?> <li class="nav-previous"><?php next_post_link( '%link', __( '<span class="icon"> </span>', 'yourtheme' ) ); ?></li> <?php endif; ?> <!-- for current --> <li class="nav-bloghome"><a href="<?php bloginfo('url'); ?>/blog"><span class="icon"></span>All Posts</a></li> <!-- for next --> <?php if (get_adjacent_post(false, '', true)): // if there are newer posts ?> <li class="nav-next"><?php previous_post_link( '%link', __( '<span class="icon"></span> ', 'yourtheme' ) ); ?></li> <?php endif; ?> </ul> </nav><!-- #nav-single -->