tim.vodien
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't login to Web Page. Error 500 on Chrome.Use your FTP and go to \wp-content\themes\yourtheme and open your style.css.
And revert your changes.If you cant find the changes you made then it would be best to reupload the theme and rename the old theme folder by adding “-old” to it.
Hope this helps.
Forum: Fixing WordPress
In reply to: Woocommerce: Multiple PHP errors in SiteHave you tried updating your Woocommerce plugin? This error can occur when you are on a outdated version of WooCommerce.
You may want to refer to this article.
Also, it would be best to post this in WordPress Plugin and Hacks Forum since there are a lot of plugin authors subscribed to it.
Forum: Fixing WordPress
In reply to: Update Publish Date automatically when editedForum: Fixing WordPress
In reply to: Access wp-admin when DNS servers pointing to ShopifyIf you still have your wordpress files in your server then you can access it through your FTP client. You can also access it through your existing domain name and assign your wordpress to it. To do this refer to his article.
hope this helps.
Forum: Fixing WordPress
In reply to: Too many redirects; can't access adminThis error usually occurs due to a misconfigured redirection issue.It may occur when a user has incorrect URL in WordPress Address URL or Site Address URL settings.
Since you dont have access to your dashboard then FTP your website and find wp-config.php file. You need to download and edit this file using a text editor like Notepad. Simply add these two lines to the file.
1 define('WP_HOME','https://example.com'); 2 define('WP_SITEURL','https://example.com');
Rename your original wp-cofig.php by maybe adding “-old”.
Upload the file you downloaded and configured.If the previous step did not solve your problem, then it is likely that there is a plugin issue with your site. try diabling your plugins and enable it one by one.
Hope this helps
Forum: Fixing WordPress
In reply to: Run moving clips as background template? How to?It would be best to give post your website.
However you can also refer to this article on how to.
Hope this helpsForum: Fixing WordPress
In reply to: Server Error 500- Can't access admin!You should find the file under /wp-content/themes/yourthemename/functions.php.
You can activate the default theme on your site by renaming your current theme’s folder inside wp-content/themes and adding “-old” to the end of the folder name.
Forum: Fixing WordPress
In reply to: Please help – increase amount of text shown in boxesWhat theme are you using? It seems like we can’t edit it using CSS. Try checking it in your Appearance > Customize and check if you can change it there.
Forum: Fixing WordPress
In reply to: WordPress High CPU UsageTry checking this article.
Just an overview of the link you need to check the following:
Only use stable versions of plugins
Install a caching plugin
Only use plugins you really need
Avoid using resource-hungry plugins
Check your WordPress Theme
Disable WP-Cron
Avoid plugins that cause high-CPU load
Increase PHP Memory LimitHope this helps.
Forum: Fixing WordPress
In reply to: Too much white space bt Title & postTry going to your Dashboard > Appearance > Editor > style.css.
Insert this code
position: absolute;
under your
element.style
So it should show like this:
element.style { padding: 7px; display: block; margin-left: auto; margin-right: auto; text-align: center; position: absolute; }
Hope this helps!
Forum: Fixing WordPress
In reply to: Only one post showing on blog pageIf that’s the case then you need to go to WordPress.com’s forum.
Forum: Fixing WordPress
In reply to: how to make social media icons horizontalYou’re welcome! Glad I could help.
Forum: Fixing WordPress
In reply to: how to make social media icons horizontalChange:
.footer-widgets .col-3 .widget-area { float: left; padding: 0 40px 0 0; width: 33.33%; }
to
.footer-widgets .col-3 .widget-area { float: left; padding: 0 40px 0 0; width: 63.33%; }
It’s basically changing the width’s value. If you want to move it further to the right then just increase the value/
Forum: Fixing WordPress
In reply to: how to make social media icons horizontalGo to your dashboard > Appearance > Editor > style.css and replace your:
.sidebar li, .footer-widgets li { list-style-type: none; margin-bottom: 6px; padding: 0; word-wrap: break-word; }
with
.sidebar li, .footer-widgets li { list-style-type: none; margin-bottom: 7px; padding: 15px; word-wrap: break-word; float: right; }
Forum: Fixing WordPress
In reply to: Only one post showing on blog pageJust FTP your website to see all the wordpress files. go to wp-admin folder > open your includes folder and you can open the post.php file.