visiondigital
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images not showing in postif you want an image to show on the blogroll, you must add a featured image.
– note:
if you add a featured image and then also have an image at the top of your post content, this will display as 2 images directly after each other for the reader, so it is best practice to add a featured image and then a heading paragraph, before adding further images.with regards to your post content, the issue may be with the read more call within your functions.php file, but it is hard to tell without accessing your dashboard
Forum: Fixing WordPress
In reply to: Putting menu on every page on my website except the first?there are 2 ways you could do this.
1. set up your front page to be kind of like a landing page – a blank canvas – which then links to other areas of your website that are using the navigation menu.
2. as mentioned above, create a new page template specifically for your homepage, which simply doesn’t contain the navigation menu call in the .php code.
Forum: Fixing WordPress
In reply to: Unable to log in…just get kicked back to login screenthis error is typically the result of using all of your allocated disk space with your web host provider.
There is no available space for WP to create new files – or even add data to current files, so therefore login/access details can no longer be recorded.
You will need to either log in to your cPanel/FTP client and delete a whole lot of information that is no longer required
OR
contact your web host and upgrade your account to allow for more disk space.
in all likelihood, your best course of action would be to create a duplicate page template for your homepage to use (rename it something like “hompage.php”) and then add the css directly into the code of this new template.
As the person above stated, without your actual site, we can’t give you the exact code, but this will get you exactly what you desire.
feel free to contact us if you need to know more
Forum: Fixing WordPress
In reply to: EA Contact Form 7in your header.hp file add the following code, just before the </head> tag:
<style> .elementor-76 .elementor-element.elementor-element-719063d .eael-contact-form-7 .wpcf7-form p:not(:last-of-type) .wpcf7-form-control-wrap {margin-top: 20px} </style>– note:
I have added a top margin of 20px, but just add whatever you feel you needto get to the header.php file go to:
appearance >> theme editor
then on the right hand side it would be one of the files listed.Forum: Fixing WordPress
In reply to: My site was hackedyea, it’s just an idea, but I would search in the folder directory for just the top domain (exclude the “/apu.php?zoneid=2694107” etc.).
You might want to also try to see if the comments you deleted have been completely removed, or if they are sitting in the trash of your comments section.
Forum: Fixing WordPress
In reply to: My site isn’t appearing completely.try the following:
login to cPanel and locate the WordFence plugin (File manager >> the domain >> wp-content >> plugins)
Rename the wordfence directory.
Try and log in to your WordPress website.
Once you have logged in to your WordPress admin you can name the folder back again.
Next, go to the Wordfence plugin settings in your wordpress dashboard and change the setting that caused you to be locked out.
log out and then try to log back in.
– please note: if this isn’t the cause of the issue, remember to change the wordfence plugin folder name within your cPanel.
Forum: Fixing WordPress
In reply to: Images not showing in postThis might be a simple question, but when you created the posts, did you add the images to “featured image” on the right hand side of the post editor?
If you don’t do this, the image won’t show up under the title on the blogroll.
Also, your “read more” links direct back to the blogroll, instead of to the post.. from a visitors point of view, it doesn’t look like there is any content in the 2 posts on the link you shared.
Forum: Fixing WordPress
In reply to: Plugin or Theme for product/feature comparison tableif you just type “pricing table” or “compare products” into the plugin search area, you should be able to come with a lot that would do this job for you.
Forum: Fixing WordPress
In reply to: page template not showing in any themescan you please give a bit more detail about this?
are the page templates missing from within the page/post editors?
or
is the actual code missing from the theme, so that when you look under “appearance >> editor, there s no page template?
If you are completely missing the page template code, below is the page template for the TwentySeventeen theme:
<?php /** * The template for displaying all pages * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site may use a * different template. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package WordPress * @subpackage Twenty_Seventeen * @since 1.0 * @version 1.0 */ get_header(); ?> <div class="wrap"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php while ( have_posts() ) : the_post(); get_template_part( 'template-parts/page/content', 'page' ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) : comments_template(); endif; endwhile; // End of the loop. ?> </main><!-- #main --> </div><!-- #primary --> </div><!-- .wrap --> <?php get_footer();copy the above code and add a new file within your cPanel or FTP files (wp-content >> themes >> TwentySeventeen and name it as “page.php”.
Once you have done this, you should be able to find the page template in your editor
Forum: Fixing WordPress
In reply to: 404’sin essence, the 404 errors are occurring because WordPress is a visual CMS that converts your content into code so that it can be presented in a format suitable for web design.
When you create a post and add an image by clicking “add media” and then selecting the image/resizing/repositioning etc. WordPress is working in the background to produce the code behind all of your choices (you can see this code by going to “text” in the editor).
This code adds an image in text format. So when you select the image you want (let’s call it “my image.jpg”) for your post and click “insert” WordPress compiles a code similar to:
<img src="https://yourdomainname.com/wp-content/uploads/2019/08/my-image.jpg" />When you change the file name of this image (let’s say to “my new image.jpg) then when your post loads, the code is still trying to load the above code with the old image name.
You don’t need to complete 404 redirects for all images, but you do need to update the images in your posts to make sure the code is calling for the new image (
<img src="https://yourdomainname.com/wp-content/uploads/2019/08/my-new-image.jpg" />).To do this, you will need to click on the image within the post editor a reselect the same image (with the new name) and insert this into your post, then click to update the post.
This can be very tedious, depending on how many images/posts you have, but you will keep getting errors until this happens
- This reply was modified 6 years, 7 months ago by visiondigital.
Forum: Fixing WordPress
In reply to: import changes the id’s of the media filesYou haven’t provided enough information to give an exact answer, but basics of WordPress media importing is as follows:
If you attempt to import media files which already exist in the media library, WordPress will automatically change the file id to avoid a duplicate.
Maybe this is what happened?
If not, were you using the built in import/export feature, or a plugin to complete this task?
Forum: Fixing WordPress
In reply to: My site was hackedwithout going on to your website (due to the suspected malware issues), my guess is that there have been people who have left comments on your blog/posts with links to the above websites.
Find the comments and remove them. This should work.
If you have no posts/comments, then it could be malware hidden within a plugin you have added.
If this s the case, log in to either your cPanel or FTP client and perform a file search for these web addresses. That might help with locating the problem files.Forum: Fixing WordPress
In reply to: My site isn’t appearing completely.to be able to answer this correctly, we need a bit more information:
1. are you using any security plugins (captcha/wordfence etc.)?
2. do you have access to your cpanel/ftp client?This error can occur when there is a compatibility issue with a security plugin, and you need to be able to modify the files without accessing your WP Dashboard (hence the need for cPanel or FTP client).
I also note that your website shows mixed content for ssl. You will need to fix this asap.