ProjectArmy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Visual en text editor tab problemHave you tried reinstalling the WordPress core files?
Forum: Fixing WordPress
In reply to: style.css doesn't always work…The child theme’s functions.php is just an extension of the parent’s functions.php. You don’t need to copy all of the content from the parent’s functions file to the child. As per the codex, all you need to add is this:
<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } ?>Forum: Fixing WordPress
In reply to: Can't log my admin panelAre you still getting this error?
Notice: Use of undefined constant WPSEO_Frontend – assumed ‘WPSEO_Frontend’ in /home/riccardo/public_html/wp-content/plugins/ceceppa-multilingua/includes/compatibility.php on line 324
If yes, the plugin might not have been completely disabled. Backup your site and try deleting the plugin then.
Forum: Fixing WordPress
In reply to: Fatal error on all service pagesIt’s an error related to the theme. I think you should contact the theme developers for help.
Forum: Fixing WordPress
In reply to: Centering problemYou just need to install the plugin by going through Plugins > Add New then search simple custom CSS. Activate after installing and then there should be a new option under Appearance that says Custom CSS.
You’ll then see this page:
http://screencast.com/t/qr1HLifhRfx
Paste sterndata’s code there.
Forum: Fixing WordPress
In reply to: Can't log my admin panelTry disabling the ceceppa-multilingua plugin by renaming its folder. If that doesn’t work, disable all plugins by doing the same as the multilingua plugin.
Forum: Fixing WordPress
In reply to: Database error upon upgradingIf it says Error establishing database connection then that most likely is a server error that needs to be handled by your host.
Forum: Fixing WordPress
In reply to: 4.5.2 Functionality Not WorkingHave you tried disabling the plugins?
I think you might be missing some dependencies. You might need to contact your host about this. This might help.
Forum: Fixing WordPress
In reply to: How would I fix this featured image size issue?Your working with a masonry type gallery. I find masonry galleries a bit of a pain to work with. I think you should resize your images in photoshop so that everything gets fit together correctly.
Forum: Fixing WordPress
In reply to: Delete DB and website still workingYeah. I agree with Tara. You might want to check with your host as well as they might have their own cache too. I’ve seen a website before where any changes that you make takes hours to take effect.
Forum: Fixing WordPress
In reply to: wp-login problem with php 5.6Does a clean wordpress install work on your new server?
Forum: Fixing WordPress
In reply to: My mobile version of my website is zoomed in..What theme are you using? Most modern themes are made to be mobile responsive. This means that the sections of your website will be adjusted to fit and look nice in mobile phones.
Forum: Fixing WordPress
In reply to: Link to this post!Right. That’s why I mentioned that it’s only a quick fix.
Forum: Fixing WordPress
In reply to: Can't load a script…..yeah i am new here…It should work if you add it in the footer. Can you try adding a console.log script inside each $(document).ready functions to see if they work?
Example:
console.log('it fires');