Luis Abarca
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with Gzip enabledumm, deactivate the theme or rename it if you can acces to your wp-admin
try to add gzip with W3 Total Cache or Super Cache instead, it also add expiration dates and you’ll get better overall perfomance
Forum: Fixing WordPress
In reply to: Customizing PostsYep, you can edit single.php or single-{posttype}.php file.
have a look to this file https://codex.www.ads-software.com/File:Template_Hierarchy.png
If you want to costomize just some posts, check this plugin https://www.ads-software.com/extend/plugins/single-post-template/
Forum: Fixing WordPress
In reply to: Error establishing a database connectionDatabase connection credential are wrong, check if database host, user and password are correct.
Try to add a new user to the database and update wp-config.php.
Forum: Fixing WordPress
In reply to: Partial upload from Local PC to web server?All information is in the database, when you add pages WordPress saves text content in database, but all resources like images, docs, etc. are uploaded in wp-content/uploads folder.
Forum: Fixing WordPress
In reply to: Add HTMLDid you pasted the code in HTML View ?
Try to create a short code instead in functions.php of your current theme.
function paypal_button_func( $atts ){ return 'all your html code here'; } add_shortcode( 'paypal_button', 'paypal_button_func' );
The in your page or entry, add [paypal_button] in place
Reinstall from a clean copy of WordPress, maybe they uploaded a script to your wp-content and can get acces later.
Add a .htacces to your wp-content folder with this content
php_flag engine off
That way if they upload a script with .jpg.php they can not run the shell anymore.
Forum: Fixing WordPress
In reply to: Fatal error: Call to a member function optionsUpdate the theme too
Seems that you fixed, could you share how do you did it ?
Regards!
Forum: Fixing WordPress
In reply to: Widget PaddingJust add this rule to your styles.css
.sidebar-widget-style { margin-top: 4px; }
Forum: Plugins
In reply to: [Media Library Categories] Plugin requires wp-content/plugins directoryMake a symlink to wp-content folder, that works for me with NextGen in multisite installation
Forum: Fixing WordPress
In reply to: Changing themes and keeping your settings?I currently use OptionTree plugin to have global settings across themes.
Forum: Installing WordPress
In reply to: moved site to different host, now getting 404 errorIf you are using Mac, try Gasmask to change your host file https://roaringapps.com/app:2909
Forum: Fixing WordPress
In reply to: Twenty Eleven – How to Center Navigiation Menu?I’m sorry, when zero is always zero ??
#branding .only-search + #access div { padding-right: 0; }
Forum: Fixing WordPress
In reply to: Twenty Eleven – How to Center Navigiation Menu?You have the same problem @billystarponturtle, just remove the padding-right
Forum: Fixing WordPress
In reply to: Twenty Eleven – How to Center Navigiation Menu?keturah, add this code at the end of your styles.css.
The menu div has a padding-right of 250px, thats why doesn’t appear centered.
#branding .only-search + #access div { padding-right: 0px; }