brookskim
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Video Lightbox] Error after upgrading to 1.8.5Here you go:
[video_lightbox_youtube video_id=IjHgzkQM2Sg width=0px height=0px anchor=”Play Video”]
Forum: Plugins
In reply to: [WP Video Lightbox] Error after upgrading to 1.8.5Sorry, I accidentally replied to my original post, but couldn’t delete it.
The actual problem still exists.
Forum: Plugins
In reply to: [WP Video Lightbox] Error after upgrading to 1.8.5Disregard this reply.
- This reply was modified 7 years, 2 months ago by brookskim.
That helps tremendously. Thanks Cory. Changing the hosts file is a great idea.
Yes, this would be extremely helpful. I’m trying to do the same thing – moving to new host but keeping the same domain.
Forum: Fixing WordPress
In reply to: Email This Post codeI didn’t see the links you provided. I’ll check those out. Thanks.
Forum: Fixing WordPress
In reply to: Email This Post codeThe Floating Social Bar. It only has the main 5 (twitter, facebook, google, linkedin, and pinterest.
Forum: Plugins
In reply to: [Floating Social Bar] Google button unclickable only in certain positionsI just upgraded to the latest version of WordPress and it appears to have fixed the problem.
Very strange.
Forum: Plugins
In reply to: [Floating Social Bar] Google button unclickable only in certain positionsI forgot to mention — this only happens when the Disable Socialite option is unchecked.
Forum: Plugins
In reply to: [Floating Social Bar] Google button movesHi Syed,
I fixed it by adding a margin to the top of the googleplus.socialite-loaded class.
Thanks.
Forum: Fixing WordPress
In reply to: Top-10 List with PaginationNevermind, I just found one that’s perfect.
Forum: Fixing WordPress
In reply to: Child theme confusionOkay, I think here’s what’s happening. My knowledge of php is basically what I’ve learned in the past few hours, so please excuse the lack of correct terminology.
Anyway, when the parent and child have different code within the same conditional tags, the child’s code will be used, having the same effect as overriding the parent. I’m assuming this is because php code can’t be appended from child to parent within the same tags. However, anything new outside of those tags will be appended.
I don’t know if that’s how it works, but it makes sense if it does. I think.
Forum: Fixing WordPress
In reply to: Child theme confusionUnlike style.css, the functions.php of a child theme does not override its counterpart from the parent. Instead, it is loaded in addition to the parent’s functions.php. (Specifically, it is loaded right before the parent’s file.)
Right, I understand that, but what I’m saying is that my child theme’s functions.php file IS overriding its parent counterpart.
Forum: Fixing WordPress
In reply to: Child theme confusionOkay, I’ve been experimenting with this for the past 2 hours and here’s what I’ve discovered. Everything with style.css is working the way it should. But here’s the odd thing with the functions.php file.
I installed a brand new theme and created a child theme for it. I then cut out an “if function exists” section from the parent put it into a new functions.php file in the child theme. So, at this point, the only thing the child’s functions.php file has is this particular “if function exists” code.
After this, everything looked normal when viewing the child theme, as expected. The code from the child was evidently appended to the parent.
But then, I modified that code and put it back in the parent. So now the child has the original code and the parent has the modified code. They’re both within the same “if function exists” tags.
When I did this, the child theme’s code completely overwrote the parent, instead of appending it. I exchanged the code between parent and child, and saw the same behavior.
Am I missing something?
Forum: Fixing WordPress
In reply to: Child theme confusionGreat, let me give that a shot. Thanks.