acmb3
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Will images be broken once I update DNS?In theory yes.
Once you have the NEW fresh one ready to go right before you swap DNS make sure you go into WP and adjust your general site settings. Then do a replace on post_content to get all those nasty hard coded urls out of there. 🙂
Forum: Fixing WordPress
In reply to: Will images be broken once I update DNS?If its fresh then even easier – just make sure you do a replace (BACKUP BEFORE YOU DO ANYTHING THOUGH HAHA) on the content and you will be all set.
With your other client, backup everything then do a replace for the domain so the images will load.
Remember though, ALWAYS backup your database before doing a replace like that, if you mess up it can mean hours of work – or a quick import from a file. 😉
Hrm.. Not sure – it is working fine for all of those browsers for me. Try a few products, maybe something in the product itself is throwing it off.
Forum: Fixing WordPress
In reply to: Where is custom CSS stored?Did you check the actual style.css file for your theme? Might have literally posted it to the file. Don’t have jetpack on my test WP so can’t test it out ha.
Howdy,
It is showing up properly for me – can you take a screenshot and also post the code you put in the css so I can see. 🙂
Forum: Fixing WordPress
In reply to: Will images be broken once I update DNS?The process I normally take is this:
Main website: website1.com
Temp Site: 111.11.11.1 (ip address etc..)Change your home & main website url to the ip address in WP. RE-upload or adjust all of your images if you are doing that, if you have already backedup and moved your images then no need to re-upload.
Make your adjustments being careful NOT to hard code the ip address within the template files of WP.
Right before you are ready to change the DNS I go into WP and alter my settings from the IP to the real website domain name. Next I open PHPMyAdmin and go to the table “wp_posts”.
I then run a replace command and replace ALL ip addresses with the real website:
UPDATE wp_posts SET post_content = REPLACE(post_content, '111.11.11.1', 'http://www.website1.com')This will replace all hard coded links to images or url’s you have in your content to the new site.
Then alter your DNS and you should be fine. 🙂
Forum: Fixing WordPress
In reply to: Where is custom CSS stored?What do you mean by “Custom CSS”? Normally it is just stored right into the style.css file, then again I haven’t edited a css file from the editor in a LONG time.
Howdy,
Sorry lost track of this topic.
This one is a bit more complicated.
FIRST create a css file and save it on your website with this in it:
.pf-src-name {display: none;} .pf-src-url {display: none;}SECOND add the below variable just like I had you do the PDF one above:
var pfCustomCSS = 'http://www.YOURSITE.com/css_file.css';Change the url to your site and the style sheet you just created – where ever you loaded it.
Give it a try 🙂
Forum: Fixing WordPress
In reply to: Can't view blog or site adminHey HV,
Sorry for the long delay in posting – was on a one day holiday! 🙂
The site actually loaded pretty fast for me – still having speed issues?
Forum: Fixing WordPress
In reply to: Can't view blog or site adminMake sure this:
$loop_res['permalink'] = get_permalink($comment->ID). '#comment-' . $comment- >comment_ID;Is on the same line like this:
$loop_res['permalink'] = get_permalink($comment->ID). '#comment-' . $comment->comment_ID;so its $comment->comment_ID;
Forum: Fixing WordPress
In reply to: Can't view blog or site adminPlease post the code from the file:
/wp-content/themes/iBizPressLightMagazine/functions.php
From lines 175 – 200 (if it goes up to 200).
Once we see that we can fix the issue. 🙂
Forum: Fixing WordPress
In reply to: Can't view blog or site adminPut it above the short and sweet comment. Might give us a clue.
Forum: Fixing WordPress
In reply to: Add Media FunctionalityTry turning on Debugging or error reporting to see if there is an error – if we have an error we can do a fix. 🙂
Forum: Fixing WordPress
In reply to: Can't view blog or site adminDo me a favor and open index.php in your wordpress installation and put the below:
ini_set('display_errors', 1); error_reporting(E_ALL);Then post what you see here please. 🙂
That will help us determine what is the core issue, might not be your db.
Forum: Fixing WordPress
In reply to: Blog posts hosted on a pageWhy not use Blog as the parent and then house those other categories as children?
Or are you looking to have your entire WP installation live on “blog”?