Rafael Minuesa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My site keeps going back a pageCan you provide the URL of your site?
Forum: Fixing WordPress
In reply to: Trying get the header section largerYou’re most welcome 🙂
Happy to be of help.
Forum: Fixing WordPress
In reply to: Trying get the header section largerIf you did go to Appearance, and then to Edit CSS and pasted the CSS code into the CSS Stylesheet Editor like you said, that error would have never occurred.
You got that error because by mistake you were trying to insert raw CSS code into a functions PHP file.
There are no “better” plugins, they just serve different purposes.
Forum: Fixing WordPress
In reply to: Trying get the header section largerRight, just what I thought, you were not using the correct WordPress plugin needed to add Custom CSS styles. Here goes the link again:
https://ww.wp.xz.cn/plugins/simple-custom-css/FYI, CSS and PHP are two complete different animals 🙂
Forum: Fixing WordPress
In reply to: Trying get the header section largerThere’s nothing wrong with that CSS code,
and it just isn’t possible that applying CSS generates that kind of error,
that’s a PHP error.Are you using the Custom CSS plugin I suggested before?
Looks like you are trying to include the code in a PHP file, perhaps functions.php?Forum: Fixing WordPress
In reply to: Trying get the header section largerTry:
#masthead > div > div.site-search {
display: none!important;
}Forum: Fixing WordPress
In reply to: Trying get the header section largerTry
.site-search {
display: none;
}in addition to the previous code.
Forum: Fixing WordPress
In reply to: Trying get the header section largerTry adding this Custom CSS
`.site-header {
background-size: contain;
margin-top: -3em;
padding-top: 10em;
}Here’s an easy-to-use WordPress Plugin to add Custom CSS styles:
https://ww.wp.xz.cn/plugins/simple-custom-css/Forum: Plugins
In reply to: [Visual Slide Box Builder] Add images side by sideHTML
<div class=”grid”>
<div class=”img-next-to-each-other”>
<img src=”#” />
</div>
<div class=”img-next-to-each-other”>
<img src=”#” />
</div>
<div class=”img-next-to-each-other”>
<img src=”#” />
</div>
</div>CSS
.grid {
width: 100%;
padding: 0;
}
.img-next-to-each-other {
float: left;
width: 33.33%;
}Muchas gracias Uli,
excelente plugin. 🙂Forum: Fixing WordPress
In reply to: changing site address url – "session expired" when editing contentThat fix is completely appropriate, sorry I misread you were not able to log back in.
And yes absolutely, go ahead with changing hosting to .com, just make sure you make a complete backup first (both database & files) BEFORE you attempt to migrate the site. Here’s some info on how to migrate WordPress:
http://codex.ww.wp.xz.cn/Moving_WordPressYou most definitely will want someone experienced to help you with this. Unfortunately I’m completely swamped, but I’m sure your new host will be able to give you some pointers.
Forum: Fixing WordPress
In reply to: changing site address url – "session expired" when editing contentYou should have not changed that URL just like that. It needs to point to the website where WordPress is actually installed.
To fix this now you will need to change the URL directly in the database:
Instructions on how to do that here:
http://codex.ww.wp.xz.cn/Changing_The_Site_URL#Changing_the_URL_directly_in_the_databaseThe correct setup for what you’re trying to achieve would be installing WordPress in .com, and then creating a domain redirect from .ca
Obviously no hosting needed in .ca if done this way, only in .comForum: Fixing WordPress
In reply to: WordPress PathsThat’s correct
Forum: Fixing WordPress
In reply to: WordPress PathsPath to WordPress: The absolute filesystem path to the root of the WordPress installation. Simplest way of finding out would be uploading a PHP script to the root directory of your WordPress installation, such as:
<?php
echo __FILE__;
?>
Save the text above as file as path2wp.php and upload it to the root directory where WordPress is installed.
Then on your browser type in the URL bar:
http://www.mysite.com/path2wp.php (change if WordPress is installed in a subdirectory).Blog-Domain: mysite.com
Blog Cookie Domain: mysite.com
Forum: Fixing WordPress
In reply to: admin login problemGlad you could finally access the admin area.
Both the hide-login and the lockdown plugins can be easily re-installed:
Regarding the mess you describe, with two different WordPress sites running two different WP versions, and security plugins with redirects, I would advise you to really get the help of a professional, as it looks as if you’re going to have to migrate or merge sites, and that involves tampering with MySQL databases and some expertise.
Unfortunately I’m very busy at the moment, and can’t think of anyone either, but it shouldn’t be too difficult to find someone to do the job. Just make sure they know what they’re doing.
Good luck!