Moultrup
Forum Replies Created
-
Forum: Plugins
In reply to: [Animate It!] Keep image in final state after animation using short codes.Shoot, it didn’t appear to work for me.
Oh well, it’s not a big deal at all. I do really appreciate your help on the matter though.
Thanks again!
Forum: Plugins
In reply to: [Animate It!] Keep image in final state after animation using short codes.Thanks for the response!
Here’s a test page I made with the code and an example:
Forum: Reviews
In reply to: [WordPress Simple Shopping Cart] Love it!Awesome!
Sorry, I was a little too quick to review this. Thanks for showing me this and for the plugin!
Forum: Fixing WordPress
In reply to: Changed my site from http to https now I can't access WP-AdminI actually opted to change the ‘function.php’ (second option listed here):
1. SFTP into your website and (the file hierarchy may be slightly different for you) open
public_html > wp-content > themes > [your theme’s name] > function.php2. Add these two lines to the file, immediately after the initial “<?php” line:
update_option(‘siteurl’,’https://example.com’);
update_option(‘home’,’https://example.com’);Use your website’s URL instead of example.com
3. Save, upload, refresh.
4. Done! Log into your WP-Admin page to see if it worked.
Let me know if that helped.
Just note: I also got it to work by changing to wp-config.php file, BUT by editing that particular file, it wouldn’t let me edit the ‘WordPress Address (URL)’ or ‘Site Address (URL)’ options found under WP Admin Page > Settings > General. It simply grayed-out the option and I didn’t like that.
Forum: Fixing WordPress
In reply to: Changed my site from http to https now I can't access WP-AdminYou rock! It worked this time around. I tried pasting:
define(‘WP_HOME’,’https://lexingtonadvisorsinc.com’);
define(‘WP_SITEURL’,’https://lexingtonadvisorsinc.com’);In a different spot of the php file and it worked.
Thanks!