Forum Replies Created
-
AuthorPosts
-
Thank you. Please let me know if he’s resolved the issue.
Okay, thank you. Please let me know if you can find anything.
Ok. I changed it to Admin. Please let me know if that works.
Thank you
I’ve tested it on multiple iPhones and they all show the same result. It’s not a problem that shows up on the desktop or any desktop emulation. I still do not know why.
I will provide new login information. I tested it and it works fine. Please let me know if that works for you. Thank you.
Ah, thank you. Unchecking the mega menu box solved that problem. I still can’t figure out the weird mobile iPhone issue though. I’ve included some login information (Editor status) in order for you to investigate further.
The double menu strategy works quite well. I can have anchor links on the main page now. However, the issue does persist though, so I will continue investigating that.
I do have another question concerning the menu though. On the Desktop, while hovering over the “Services” section, the submenus opens up quite cleanly and elegantly (one column). However, once I go to any internal page (Photography for example), highlighting the Services section again now displays a rather large and inelegant submenu. Is there a way to fix this? It’s only a problem if you’re in one of the internal pages on Desktop (Photo, Video, Aerial, Floor Plan).
Is there a way to make the internal mega menu at least consistent with the home page’s elegant presentation? If possible, an arrow for a dropdown submenu would be great as well.
Thank you
Thank you all for the suggestion.
While the suggestion does work, the main reason I can’t do that is because there are other pages on the website. That anchor will only work on the main page. So, if someone is on another page somewhere, the Contact&Schedule section in the header will not work at all.
I’m just surprised that this is such a unique problem. It’s perfectly fine on Android devices that I’ve tested. It’s only a problem on mobile and specifically for Iphones.
I checked on multiple iPhones. It’s a strange problem that does not happen at all on the desktop–only for the iphones I’ve tested so far.
I have an iPhone and I kept ending up in the pricing section when I clicked Contact&Schedule. Do you happen to know why this is the cause? It only happens on mobile.
Thank you
I’m mainly just wondering why it doesn’t work on mobile. Even with the absolute URL, it should work fine still. The anchors work fine on desktop but not mobile (The Contact & Book section). Are you seeing a similar issues as well?
Thank you
July 12, 2020 at 2:56 am in reply to: Unable to Edit Page on Website (Permanent Loading Screen) #1229723Thank you very much for looking into it. Retrieving the template for editing was tremendously helpful. I can just create a new page and replace the old one. For some reason, it’s only this page that isn’t working. Everything else is working perfectly.
To confirm, the debugging box showed up at the bottom via the new code you added to Enfold Child, correct? For some strange reason, the preview of the testing document doesn’t work (even though I could edit it). I got the preview to work by copying this entire template, creating a new post, and pasting the entire template there instead of just the code.
I tried adding define( ‘WP_DEBUG’, true ); to the wp config file, but I am not sure what I should be looking for. Where should I start? Nothing is showing up even after I added that code.
Thank you.
July 11, 2020 at 5:44 am in reply to: Unable to Edit Page on Website (Permanent Loading Screen) #1229555My apologies. I’ve provided the website below.
November 25, 2019 at 1:06 am in reply to: Changing the Title and Excerpt Font Sizes on Search Results Page #1159729Everything works great, Mike. Thank you for everything!
November 24, 2019 at 5:59 pm in reply to: Changing the Title and Excerpt Font Sizes on Search Results Page #1159622Thank you, Mike! You’ve saved the day again. I really do appreciate it.
Can you clarify this line of code for me? That should be it. Thank you again.
@media only screen and (min-width: 768px) {
#top.search-results h2.entry-title {
padding: 0 !important;
}November 23, 2019 at 1:55 am in reply to: Changing the Title and Excerpt Font Sizes on Search Results Page #1159377The padding code below did not work for me. I’ve tried changing the numbers around as well.
.search-results h2.entry-title {
padding: 0;
}How would I move the text content to the right?
Thank you.
November 20, 2019 at 6:44 pm in reply to: Changing the Title and Excerpt Font Sizes on Search Results Page #1158568Thank you very much! That worked perfectly.
Is there a way that I can move the excerpt closer to the title? I had previously used the code below to hide the meta information, but there is just a huge gap between the title and the excerpt where the meta-information (date, comment) used to be.
.search-results .post-meta-infos {
display: none !important;
}And is there a way for me to manually adjust the image so that I can have it be a larger size? It’s slightly small and I’d like to be able to adjust it as necessary. That’s all the questions I have left.
Thank you.
Don’t know how I missed that thread. Problem solved. Thank you, Victoria!
July 22, 2019 at 6:17 am in reply to: Highlighting a Specific Header Menu for A Specific Post #1120751Thank you for all your assistance, Mike.
July 22, 2019 at 2:12 am in reply to: Highlighting a Specific Header Menu for A Specific Post #1120732I have only two questions left out of curiosity. Why is the code below broken up like that (the color: #109bc5 in a separate function instead of being grouped with background color, border, and radius? I noticed the same pattern with the hover state.
#top.stuff-cat .avia-menu li#menu-item-2165 {
background-color: #f2f3ff !important;
border: 1px solid #ffffff!important;
border-radius: 100px !important;
}#top.stuff-cat #header .av-main-nav > li#menu-item-2165 > a {
color: #109bc5 !important;
}And is 2165 just an enfold thing? Thank you.
July 22, 2019 at 12:44 am in reply to: Highlighting a Specific Header Menu for A Specific Post #1120721Thank you so much, Mike. Your help has been amazing. Please let me know if I understand this correctly. Suppose I have a menu header item and category called “Stuff” in the future, I would do the following.
put into function.php’s previous block of code.
if( is_single() && has_category(‘stuff’) ) $classes[] = ‘stuff-cat’;
put into custom css
#top.stuff-cat .avia-menu li.current-menu-item {
background-color: transparent !important;
border: 0px solid #ffffff!important;
}
#top.stuff-cat #header .av-main-nav > li.current-menu-item > a .avia-menu-text {
color: #fff !important;
}#top.stuff-cat .avia-menu li#menu-item-2165 {
background-color: #f2f3ff !important;
border: 1px solid #ffffff!important;
border-radius: 100px !important;
}
#top.stuff-cat #header .av-main-nav > li#menu-item-2165 > a {
color: #109bc5 !important;
}#top.stuff-cat .avia-menu li.current-menu-item:hover {
background-color: #f2f3ff !important;
border: 1px solid #ffffff!important;
border-radius: 100px !important;
}#top.stuff-cat .avia-menu li.current-menu-item a:hover,#top.stuff-cat #header .av-main-nav > li.current-menu-item:hover > a .avia-menu-text {
color: #109bc5 !important;
}July 21, 2019 at 9:33 pm in reply to: Highlighting a Specific Header Menu for A Specific Post #1120706When I hover the mouse over the word “Blog” there is no hover state. That makes me think we somehow masked but didn’t resolve the issue, because it’s messing up the hover state for the “Blog” menu.
I’m slightly concerned the problem will manifest itself in other ways if not actually resolved. Is there anyway to fix that? As in, keep the destinations active state while restoring the hover state over the “Blog” menu item? Perhaps figuring that out will solve the problem once and for all.
July 21, 2019 at 5:50 pm in reply to: Highlighting a Specific Header Menu for A Specific Post #1120662Sure thing, Mike. Thank you for helping.
July 21, 2019 at 4:29 am in reply to: Highlighting a Specific Header Menu for A Specific Post #1120557Hello, Mike. The code does not seem to work. Everything still shifts over to “Blog” regardless. Does capitalization matter? The header menu is all capitalized (DESTINATIONS) whereas the category itself only capitalizes the first letter (Destinations). I’ve tried all variations of capitalization as well and it still didn’t work. I inputted the following version of the code into the Child Theme’s functions.php area.
add_filter( ‘body_class’, ‘add_category_class’ );
function add_category_class( $classes ) {
if( is_single() && has_category(‘destinations’) ) $classes[] = ‘destinations-cat’;
return $classes;
}Is there something else that we are missing? I feel this is slightly more problematic than it should be. The code makes sense (is_single for only posts and the specific category), but it’s still not working. Is there something else we can try?
Everything works as intended. Thank you.
Now you’ve got me curious haha. How does 1/3rd and 3% end up in reducing 50%? Forgive my ignorance.
Thanks for helping me with all of this, Mike.
I just have one last issue. For some reason, I can’t figure out how to change the spacing between posts on the “Blog” page. There is a rather large gap when I use the grid layout from the “Blog Post” element. For example, the top 3 posts have a huge gap with the bottom 3 posts (there are 3 posts for each row). While we’re at it, can also I get help with changing the vertical padding (between two posts on the same row).aceadventurer.com/blog/
That makes sense. I got it to work. I have moved the code to the Child’s function.php file. Thank you, Mike. Your help has been exceptional.
Is my understanding of the following correct?
1) The Child Theme will allow me to change many of the files themselves (like functions.php) without affecting the parent them. It will also allow for seamless updates (since these updates will affect primarily the parent theme) without changing the settings I have in place for the Child Theme.
2) If something goes wrong with the child theme, I can simply just go into Appearance –> Theme –> Activate the old parent Enfold theme and it should be good
3) The Child Theme folder currently only have the function.php and style.css at the moment for editing (as far as I can see)Do I do that in Appearance –> Themes –> Add New –> Upload File (the child theme) to install the child theme? So, basically, just like the process for installing the Enfold theme itself. Then I go into Enfold –> Import/Export for the parent stuff right?
When I tried to install the child theme through the “Import Theme Settings File” it only lets me select the style css folder, and I don’t think that’s right.
My apologies for the confusion. Everything is already backed up as well, but I just want to confirm 100% before I do any fundamental changes like this.
This reply has been marked as private.Oh, ok. So, I can’t simply add the same code in function.php, change “destination” to “stuff”, and add the css changing “destination” to “stuff” for a new category even for another menu link? I thought that would work since the only difference was the menu link category. Only the word changed. It’s all good though. I really do appreciate all the help.
One final question. I’ve just been putting CSS into general styling, and the change to function.php is rather important so I don’t mind changing the original parent theme for that part. When would you recommend that I use a child theme in the future?
Ah, I found it in the file manager. It was not in Appearance –> Editor for some reason. Thank you for being patient with me, Mike. Your support is great as always. Can you explain this part of the code to me? I just keep thinking it’s just white with nonexistent background and radius. That confuses me.
#top.single-post.destinations-cat .avia-menu li.current-menu-item {
background-color: transparent !important;
border: 0px solid #ffffff!important;
border-radius: none !important;
}
#top.single-post.destinations-cat #header .av-main-nav > li.current-menu-item > a .avia-menu-text, #top.single-post.destinations-cat #header .av-main-nav > li.current-menu-item > a .avia-menu-subtext {
color: #ffffff !important;
}Also, does this mean that I can add any category by reusing that function.php and CSS by simply changing the words “destinations” to something else? So if I have a menu link that says “stuff” I can start directing items to that parent page simply by adding the “stuff” category and setting the posts as such?
-
AuthorPosts