ProjectArmy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Redesign my siteWhat you’re looking for is a staging site. You clone your existing website to a sub-domain, like dev.example.com, and make all necessary changes there. Once you’re done, you replace old site with a new site.
You can find additional details and tutorial here:
http://www.wpbeginner.com/wp-tutorials/how-to-create-staging-environment-for-a-wordpress-site/Forum: Plugins
In reply to: [Cache Enabler] advance config and cache expirationThank you.
Forum: Fixing WordPress
In reply to: www.mysite.com different from mysite.comWere you able to solve this issue? I see the same site, since escapads.com redirects to http://www.escapads.com.
^V
Forum: Fixing WordPress
In reply to: Lost wordpress directoryHi,
When WordPress is in the /wordpress/ directory, you can’t set home/site URL to the root domain without additional tweaks to make sure everything points to the right place.
If you can access your database easily, you can change manually your URLs back to the development URL. You’ll find them under wp_options tables, you need to look for siteurl and home.
If you’re not sure how to do it, you can update them by placing the following 2 lines of code into your theme’s function.php file and trying to load WordPress. This will update your URLs back to the development URL. After you done, remove these 2 lines:
update_option( ‘siteurl’, ‘http://dailesnams.lv/wordpress/’ );
update_option( ‘home’, ‘http://dailesnams.lv/wordpress/’ );More info on this:
https://codex.wordpress.org/Changing_The_Site_URL#Edit_functions.php^V
Forum: Fixing WordPress
In reply to: Not receiving admin email notification when users post commentsDo you receive any emails from WordPress? For example, if you have a contact form or if you try to reset password? If emails are not working at all, then it might be something related to your hosting provider. Some hosts require “from” address to be a valid address using the same domain as the website.
^V
Forum: Fixing WordPress
In reply to: Shopify Buy ButtonDo you have any caching plugins installed on your WordPress?
Can you take a screenshot of the error console in Chrome when buttons disappear? If you open your page where this happens, and when buttons are not showing, hit F12 on your keyboard. It will open developer tools. There will be a tab “Console”, click it and take a screenshot if you see any red errors. If you see no red errors, then you don’t need to take the screenshot. Just come back and let me know.
Thanks Paul, I figured that much. I’ll pass this on and see what they say.
Viktor
Forum: Fixing WordPress
In reply to: Strange text showing up on Google searchDo you still see that spam text on your site? Besides Google results, is it still on your site? I went through several pages that had Arabic text, but now they don’t. So maybe it’s possible it was removed as we were working on it.
Google results take time to update, so it still shows up there. But the actual site might not have anything anymore.
Do you by any chance use Display Widgets plugin? It’s been removed from repository for spreading malicious spam.
https://wptavern.com/display-widgets-plugin-permanently-removed-from-wordpress-org-due-to-malicious-codeTwo good plugins for migration are:
https://en-ca.wordpress.org/plugins/all-in-one-wp-migration/
https://en-ca.wordpress.org/plugins/duplicator/I use a premium version of UpdraftPlus for backups and migrations.
^V
Forum: Fixing WordPress
In reply to: Shopify Buy ButtonSo after clearing cache it works, but when you reload the page, buttons disappear? Am I understanding this correctly?
^V
Forum: Fixing WordPress
In reply to: Disabling Jpg and Gif image compression?WordPress doesn’t compress GIFs, it generates various sizes of that image using the first frame. But the original is always there. You simply need to select “full size” option.
You might see some pixelation if GIF is scaled down on a post/page, but that can be fixed by making sure it is displayed at full size.
^V
Forum: Fixing WordPress
In reply to: How to Break Space inside Div BoxIf I understand correctly, you’ll need to change your HTML too. What you have isn’t correct. Here’s an example of what I think you’re looking for:
https://jsfiddle.net/kybwq22z/Your full, edited code below:
<!DOCTYPE html> <html> <head> <style> * { box-sizing: border-box; } .header, .footer { background-color: grey; color: white; padding: 15px; } .column { float: left; padding: 15px; } .clearfix::after { content: ""; clear: both; display: table; } .menu { width: 118%; } .content { width: 125%; } .menu ul { list-style-type: none; margin: 0; padding: 0; } .menu li{ display: block; clear: both; } .menu li span{ padding: 18px; margin-bottom: 8px; background-color: #33b5e5; color: #ffffff; float: left; margin-right: 15px; } .menu li span:hover { background-color: #0099cc; cursor: pointer; } .containerMenu { display:block; } .menu li p{ padding: 15px; } </style> </head> <body> <div class="header"> </div> <div class="clearfix"> <div class="column menu"> <ul class="containerMenu"> <li id="m1"><span>Part 1</span><p id="m2"><Strong> Test - text appear here testing testing testing test</strong></p></li> <li id="m3"><span>Part 3</span><p id="m4"><Strong> Test - text appear here testing testing testing test</strong></p></li> <li id="m5"><span>Part 5</span><p id="m6"><Strong> Test - text appear here testing testing testing test</strong></p></li> </ul> </div> </div> <div class="footer"> <p>Welcome</p> </div> </body> </html>^V
Forum: Fixing WordPress
In reply to: Shopify Buy ButtonYes, they do show up. It might be a caching issue. Have you tried clearing your browser cache?
You can find instructions here:
http://refreshyourcache.com/en/home/^V
Forum: Fixing WordPress
In reply to: Disabling Jpg and Gif image compression?Yes, it’s possible. You simply need to add this to your theme’s functions.php file:
add_filter('jpeg_quality', create_function('', 'return 100;')); add_filter('wp_editor_set_quality', create_function('', 'return 100;'));^V
Forum: Fixing WordPress
In reply to: Add Forum to my websiteYou can start with the official forum plugin for WordPress, bbPress:
https://bbpress.org/There are plugins for bbPress that add additional functionality:
https://bbpress.org/plugins/You might also find Groups plugin useful, to create private forums:
https://wordpress.org/plugins/bbp-private-groups/There’s a step-by-step guide on how to set it up:
https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/^V
Forum: Fixing WordPress
In reply to: Shopify Buy ButtonWere you able to fix this? I see buttons in my Chrome.
^V