Forum Replies Created
-
AuthorPosts
-
andrewf90Member
That’s perfect! Amazing!
Thank you so much!
andrewf90MemberOnce again, I did something wrong. I created the folder myself and I uploaded two files. I ended up deleting that and then following the Upload Theme option through the WordPress dashboard, and voilà! It worked. I went back to the child theme folder and I noticed there were four files in total? I only uploaded the
functions.php
and.css
files. Oh my. So, it all works. Thanks a bunch!andrewf90MemberIt is weird. I think it has something to do with WordPress and what I’m trying to do. I think I’m just putting too many pages in the menu and organizing it many times without saving in between. I noticed when I click on the save menu button often, it looks good. When I don’t, the pages change location and become unorganized. It’s weird. But it’s all good now.
Thanks for reassuring me everything is working fine on your end. It helped me narrow down what I might be doing wrong.
andrewf90MemberLol, I didn’t realize I had to do that. So the child theme is placed in its own parent folder in the /theme/ folder. When I activate it, my site doesn’t load, so I have to deactivate the child theme by changing its file name. Any idea what I might be doing wrong?
andrewf90MemberYeah, the menu items are organized like parent>child>”sub”child. I noticed that after adding more menu items and reorganizing the pages and stuff, the Primary Menu checkbox got unchecked. I’m trying to recheck the box and click on save menu and the page refreshes, but the box won’t stay checked… I’m not sure what I did wrong here.
andrewf90MemberHey, again! 😛
So I downloaded the child theme sample and I copied the first code snippet to the
functions.php
file and created the second file and inserted the second code snippet, but it looks like the footer area stayed the same. What might I be doing wrong? Sorry for the trouble.andrewf90MemberThat’s a very good point. I’ll make sure the page builder plugin I use has the appropriate settings.
Thanks again for all your help!
andrewf90MemberI totally forgot that this section existed, and I didn’t even think this could be a place to control the arrow. It worked.
Thanks so much for your help! (again.) 😛
andrewf90MemberHere’s a direct link to the page where I see it: https://goo.gl/e19BsD
I have made a few changes to the code through Custom CSS and two in the core files, which I know isn’t recommended. One was in page.php just to edit out comments and another was in search.php to add to the text when no results are found.
I can’t think of anything else. If there isn’t a solution, is there a way to change the
$rarr;
to...
or something else?Sorry for the trouble 🙁
andrewf90MemberAh, okay! I think it’s the .wrapper class I think is the trouble I was having, which was when I widened my window, the page title kept moving to the far left as it should, but my page builder plugin set a page width maximum of 1100, so everything on the page stopped moving at 1100 px and got filled with white margin.
How would I set the Catch Flames max screen width to 1260px as well? Would there be problems if I matched the Catch Flames max screen width to the .wrapper class width?
I tried searching through the forums about setting max screen widths and the problems it may cause if it’s too little or too much, but no luck 🙁
Thanks again, Mahesh!
andrewf90MemberYeah, I do. I thought I would at least try. lol. Thanks for all your help already!
andrewf90MemberSorry, Pratik!
I just realized that. I was working on a page. I took off the ‘Coming Soon’ page. Sorry! This was the code I received, which might be helpful for others:
/* Your code goes here */ var $ = jQuery, breakpoint = 940, initClass = 'toggleSubnavInitiated', menu, parentLinks, childrenItems; $(document).ready(function() { menu = $('.menu'); parentLinks = menu.find('.menu-item-has-children > a'); childrenItems = menu.find('.sub-menu'); if ($(window).width() <= breakpoint) { toggleSubnav(menu, parentLinks, childrenItems); } }); $(window).resize(function() { if ($(window).width() <= breakpoint) { toggleSubnav(menu, parentLinks, childrenItems); } }); function toggleSubnav(menu, parentLinks, childrenItems) { if (parentLinks.length !== 0) { menu.addClass(initClass); childrenItems.hide(); parentLinks.on('click', function(event) { event.preventDefault(); $(this).siblings('.sub-menu').toggle(); }); } }
When you say wrap the script in a resize event, that sounds like that problem I’m having. Would you be able to tell me how I can wrap this code in a resize event?
Thanks again, mate! 😛
andrewf90MemberThat makes sense! Thanks!
andrewf90MemberP.S. url is: http://goo.gl/49Mbeo 😛
andrewf90MemberOkay, it’s weird. Now it’s like the mobile nav menu becomes unclickable sometimes, too. If you switch from mobile to desktop and from desktop to mobile, you should be able to see what I see. If it doesn’t happen the first time, you can try a couple times, and it should definitely happen. I’m pulling my hair right now. lol.
Thanks again.
andrewf90MemberAwesome! You’re a genius! Thanks, Mahesh! I really appreciate your help!
andrewf90MemberHi, Pratik!
Sorry, I know I didn’t explain myself clearly. Here’s an image: http://snag.gy/2Faf7.jpg. I can’t click on ‘Business Categories.’ When I click on it, the box changes to grey, but no sub-menu items appear.
This happens when on the computer when I widen the browser window from mobile site to desktop site, the desktop site menu buttons become unclickable. I have to refresh the page for the menu buttons to be clickable again.
Sorry if I’m still unclear.
andrewf90MemberHey, I noticed I have the same problem as well. My site is: http://goo.gl/49Mbeo. I thought it was just me. You have to refresh the page and then it would work? The code change I’ve made was a javascript code so that the child menu items in the mobile site would auto-collapse. Is there a piece of code I could add to auto-refresh the page when someone changes the screen size from mobile site to desktop site by chance?
andrewf90MemberThat worked! Thanks as always for your awesome help. Sorry I forgot to take off the maintenance mode 🙁
Is it possible to edit out my domain name only because this site does get indexed very well in search engines? Sorry for the trouble
andrewf90MemberWorked like magic!
A big thanks for all your help!
-
AuthorPosts