ProjectArmy
Forum Replies Created
-
What happens after you reset password?
Forum: Everything else WordPress
In reply to: Site SupportThere’s no direct email. You can either use this forum, or try other options available here:
https://wordpress.org/about/contact/Have you tried resetting password option? I’m guessing you have, but want to make sure.
If resetting password does not work, you’ll need to manually check username and change password in database.
Let me know, I can provide instructions for doing it using cPanel.
^V
Forum: Fixing WordPress
In reply to: Featured Facebook Image Not Showing UpAre you using any plugins for this?
By default, WordPress doesn’t include OpenGraph metadata that specifies what image should be used on Facebook or other sites.
I would recommend checking out and using Yoast SEO plugin, it will improve your website’s SEO and it does include OpenGraph metadata.
^V
Forum: Fixing WordPress
In reply to: permalink structure not updating on Apache/2.4.7 (Ubuntu) ServerYou need to make sure Apache’s mod_rewrite module is actually enabled. Otherwise rewrites in the .htaccess file will not work.
^V
Forum: Fixing WordPress
In reply to: Deleted picture, whitebackground and footer dissapeared?!I will try to help you out and I need you to answer my questions so that we can figure this out. After you installed the plugin did the red star appeared itself or it is bundled together with the theme? Can you bring back the red star and if yes, can you see the footer going back also?
^P
If you share your code, we can help you fix it to eliminate the line in the back.
You should also consider using CSS button generator tool, that allows you to create a button you want and then copy CSS into your stylesheet and re-use it on your website with hyperlinks: http://css3buttongenerator.com/
^V
Forum: Fixing WordPress
In reply to: Posting code snippets – Colors disabled, or other suggestionsGlad I could help!
^V
Forum: Fixing WordPress
In reply to: border on frame in sidebarHappy I could help!
^V
Forum: Fixing WordPress
In reply to: background image loads after the formI see, I think I understand now. I thought image was pushing form down, but it’s just delayed in loading.
You’re using Revolution Slider plugin to display that section with background image and form. It looks like image is delayed with some animation to fade in. That’s what causes the form to appear right away while image in the background loads.
Try to go through Revolution Slider settings and disable any transitions and/or animations you can find. You’ll be able to load image right away. I would recommend using Visual Composer (which you’re using already) to create that section, and eliminate the need for a slider plugin and assets being loaded if you’re not using it for additional slides.
It wouldn’t hurt to optimize image to reduce file size, so overall the entire page loads faster. If you haven’t optimized it yet, try a free tool like:
https://kraken.io/web-interfaceOr, if you want to optimize more images on your site. A free plugin like Smushit.
https://en-ca.wordpress.org/plugins/wp-smushit/^V
- This reply was modified 9 years, 1 month ago by ProjectArmy. Reason: correction
Forum: Fixing WordPress
In reply to: Tried to install a plugin addin without the pluginYou’ll need to disable that addon plugin through FTP. Login to your site through FTP, navigate to
wp-content > pluginsdirectory, and find that plugin that broke your website. Simply delete that plugin, and your website should be back up.^V
Forum: Fixing WordPress
In reply to: Navigation under the headerYou won’t be able to do it with a plugin. You’ll need to customize your theme, which requires editing specific files to move menu in the new position. Usually, it’s in header.php.
Looking at Boutique theme, it looks like the main menu is already below the header. This is the demo I’m looking at: http://demo.woothemes.com/?name=boutique
^V
Forum: Fixing WordPress
In reply to: background image loads after the form@mac987 It looks OK on my end. Were you able to fix this?
^V
Forum: Fixing WordPress
In reply to: border on frame in sidebarBoth your
<table>and<td>have borders set in CSS.You can either add
style="border:0;"to<table>and<td>, or you can get rid of the borders by placing a snippet in stylesheet:.textwidget table, .textwidget table > tbody > tr > td{ border: 0; }If it’s not working still, try forcing it with
!important.^V
Forum: Fixing WordPress
In reply to: Posting code snippets – Colors disabled, or other suggestionsThere 2 things that are popular to share code snippets with syntax highlighting are:
SyntaxHighlighter Evolved
https://en-ca.wordpress.org/plugins/syntaxhighlighter/It allows you to wrap your code snippets into shortcode tags
[php]code snippet[/php]. Check to see if it supports your languages, it supports a large list of them.The other option is to use GitHub Gists. You’ll keep all your code snippets in GitHub, and simply embed them into your posts. It’s popular option since it displays code in a clean way and you also able to manage all code snippets in one place. If you go with this option, you’ll need this plugin to embed Gists:
https://en-ca.wordpress.org/plugins/oembed-gist/^V