accuwebhosting
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Load more posts on button clickHi,
load more posts button loads only 2 posts because you have passed following argument:
(array(‘posts_per_page=2’)
You’ll have to replace 2 with the number of posts you want to display. In other case, you do not pass this argument, button will show all posts.
Thanks,
Hi Jai,
Hosting your WordPress.com, you wont have full functionality.
WordPress.com’s Basic(Free) plans includes:
Free blog, WordPress.com address,
Basic customization,
No premium themes included,
No eCommerce,
No video storage,
3 GB of space,
Show ads in your blog,
Community support.
No personnel domainIf you need fully featured WordPress website, you should consider self hosted WordPress hosting.
Thanks,
Forum: Fixing WordPress
In reply to: Accidental delete of admin user entry from wordpress-users tableHi,
If you have backup available for your WordPress website, you can restore it as follows:
https://codex.wordpress.org/Restoring_Your_Database_From_Backup
As an alternative, you can add another Administrator User to the WordPress Database via MySQL-phpMyadmin. Here is the complete guide.
http://www.wpbeginner.com/wp-tutorials/how-to-add-an-admin-user-to-the-wordpress-database-via-mysql/
Thanks,
Forum: Fixing WordPress
In reply to: Primary menu not showing up in categoriesHi,
I could see that page…http://www.asxinvest.com.au/category/ramblings/weekly-takes/ is missing following navigation bar code:
<nav class="navbar-collapse bs-navbar-collapse collapse" role="navigation" id="site-navigation"> <ul id="menu-menu" class="nav navbar-nav navbar-right responsive-nav main-nav-list"><li id="menu-item-42" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-42"><a href="http://www.asxinvest.com.au/">Home</a></li> <li id="menu-item-41" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-has-children menu-item-41"><a href="http://www.asxinvest.com.au/category/ramblings/">Ramblings</a> <ul class="sub-menu"> <li id="menu-item-46" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-46"><a href="http://www.asxinvest.com.au/category/ramblings/weekly-takes/">Weekly Takes</a></li> <li id="menu-item-45" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-45"><a href="http://www.asxinvest.com.au/category/ramblings/fun-facts-and-trivia/">Fun facts and trivia</a></li> </ul> </li> <li id="menu-item-39" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-39"><a href="http://www.asxinvest.com.au/category/investor-education/">Investor Education</a> <ul class="sub-menu"> <li id="menu-item-43" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-43"><a href="http://www.asxinvest.com.au/category/investor-education/valuation/">How to value stocks</a></li> <li id="menu-item-44" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-44"><a href="http://www.asxinvest.com.au/category/investor-education/videos/">Video Tutorials</a></li> </ul> </li> <li id="menu-item-111" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-111"><a href="http://www.asxinvest.com.au/owens-portfolio/">Owen’s Portfolio</a></li> <li id="menu-item-106" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-106"><a href="http://www.asxinvest.com.au/contact-us-disclaimer-disclosure-and-privacy-policy/">Privacy and Disclosure Policy</a></li> </ul> </nav> </div> </div>Thanks,
Forum: Fixing WordPress
In reply to: How do I create icon for social networking?Hi,
Have you added Open Graph Meta Tags to your WordPress website for social media platforms?
Here is the guide, how you can add Open Graph Meta Tags to WordPress website:
https://www.elegantthemes.com/blog/tips-tricks/how-to-add-open-graph-tags-to-wordpress
http://www.quicksprout.com/2013/03/25/social-media-meta-tags-how-to-use-open-graph-and-cards/
Thanks,
Forum: Fixing WordPress
In reply to: optional display or hide the sidebar on page sidebar in wordpressHi,
You can hide the sidebar or display it optionally using the conditional comments in the sidebar. Have a look at following code block.
<?php if (is_page('about-me')) { ?> widgets code <? } elseif (is_page('8')) { ?> widgets code <? } elseif (is_page('blog-page')) { ?> <? } else { ?> <? } ?>Thanks,
Forum: Fixing WordPress
In reply to: How to remove Alert Authentication requireHi,
Are you using any security plugin like All In One WP Security & Firewall?
If yes, have you entered any secret key while configuring firewall in AIOWPS plugin?
Please refer following guidelines to configure All In One WP Security Plugin and restoring your htaccess file back to the original if this plugin has created any changes:
Thanks,
Forum: Fixing WordPress
In reply to: WP upload limitationHi Sammy,
You can refer following guide to increase the max-wp-upload limit.
http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/
Let us know if you are facing any problem other than above.
Thanks,
Forum: Fixing WordPress
In reply to: Replacing header text with image in Viper themeHi,
If you would like to Replace title and description with an image, replace the following code in header.php:
<div id="logo"> <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1> <span id="blogDescription"><?php bloginfo('description'); ?></span> </div>with
<div id="logo"> <a href="<?php echo get_option('home'); ?>/"><img src="link to image" alt="" title="" /></a> </div>src=”” is the source / path to your image (URL)
alt=”” is the text displayed when the image isn’t available
title=”” is the title of the image.Instead of directly modify a theme, it is advisable to create Child theme and modify it. Following is the complete guide on How to create child theme.
Thanks,
Forum: Fixing WordPress
In reply to: customize fancy box skin in Jupiter themeHi Ben,
In WordPress websites, CSS files are located at following paths:
wordpress-website/wp-content/themes/theme-name/style.css
You will have to navigate at above path and locate the class “.fancybox-skin” and make your desired changes.
Instead of directly modify a theme, it is advisable to create Child theme and modify it. Following is the complete guide on How to create child theme.
Thanks,
Forum: Fixing WordPress
In reply to: Links appear to work, but don't click through to pageHi David,
I could see all your website links are working fine. Can you provide us exact URL and name of link?
Thanks,
Forum: Fixing WordPress
In reply to: Downloading a themeHi,
Please refer following tutorial, it will show you how to properly move your blog from WordPress.com to self hosted. It will cover how to transfer all of your WordPress.com content to your desired host. Also, there is no need to pay the premium theme fee twice.
Thanks,
Forum: Fixing WordPress
In reply to: How to embed video in php fileHi,
Have you tried with pasting the video’s embed code in your Post?
http://premium.wpmudev.org/blog/add-youtube-video-to-wordpress/?utm_expid=3606929-34.mZctMukzSv6Wvz3lKaD43w.0&utm_referrer=http%3A%2F%2Fwww.google.co.in%2Furl%3Fsa%3Dt%26rct%3Dj%26q%3D%26esrc%3Ds%26source%3Dweb%26cd%3D4%26cad%3Drja%26uact%3D8%26ved%3D0CC8QFjAD%26url%3Dhttp%253A%252F%252Fpremium.wpmudev.org%252Fblog%252Fadd-youtube-video-to-wordpress%252F%26ei%3Dn_leVb71MIyIuAS034PIBQ%26usg%3DAFQjCNGmYmUuNtioYEpl1RJ8aRGkzShMbA%26sig2%3DTuY_KbIK8aTHQalkxZSg1Q%26bvm%3Dbv.93990622%2Cd.c2EThanks,
Forum: Fixing WordPress
In reply to: database issues after moving siteHi,
Moving WordPress installation folder is not as easy as copying a folder and pasting at another place. Moving WordPress installation should be done with extra care because it may brake your website.
In your case, I would suggest you to restore your whole WordPress website with last backup. Once you restored your Website, follow below mentioned guide to move WordPress website.
Thanks,
Forum: Fixing WordPress
In reply to: I Cannot login to wordpressHi,
Have you tried to reset the WordPress Dashboard username and password? Here are the tutorials.
http://www.wpbeginner.com/wp-tutorials/how-to-change-your-wordpress-username/
http://www.wpbeginner.com/beginners-guide/how-to-reset-a-wordpress-password-from-phpmyadmin/
You can change WordPress Dashboard username and password from database through phpMyAdmin.
Thanks,