-
AuthorPosts
-
October 18, 2017 at 5:06 pm #865827
hi can someone explain what ive done wrong its happened on two sites
when i opt for transparent header all the social icons and supplementry telephone text is invisble on mobile device view on just the home page
seeOctober 18, 2017 at 6:18 pm #865862please try this in quick css :
@media only screen and (max-width: 767px) { .responsive #top #header_meta { background-color: #cb0147 !important } }
- This reply was modified 7 years, 1 month ago by Guenni007.
October 18, 2017 at 6:22 pm #865864yep
- This reply was modified 7 years, 1 month ago by Guenni007.
October 19, 2017 at 3:41 pm #866260Hi,
Thanks for helping out @guenni007 :-)
Did you have any luck with the suggestion @codecreative?
Best regards,
RikardOctober 19, 2017 at 4:01 pm #866275Hi Guys
Thank you will try now
Can you advise why this is happening and the theme doesn’t work out of the box so to speak?
So I can explain to my assistant, if they don’t have to do this with each build be better if I can figure out why it is happening in the first instance
Thank you Guenni007
October 19, 2017 at 4:13 pm #866283Great this css fix worked :)
The site url was now moved to http://firenso-dev.flywheelsites.com/
Yeah any clarification on why this is happening is appreciated as I’ve noticed it happen more then once and I must be doing something to trigger it
October 21, 2017 at 6:17 am #866973Hi,
Please upgrade to version 4.1.2. The social icons are actually disabled on mobile devices by default.
@media only screen and (max-width: 479px) { .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks { display: none; } }
Best regards,
IsmaelOctober 24, 2017 at 11:32 am #868104I don’t understand Ismael
I didn’t pro actively attempt to enable them. Is the upgrade going to resolve this issue? I don’t want it repeating you see if I can help it
October 24, 2017 at 11:37 am #868111hey guys
I’d like to add an anchor link that says Admin and points to the admin url of a site to the sites socket.Okay so I know I can manually write this inside the theme options, but if a site is say on a temp development link then goes live I need to go back and re edit it.
So I want to make use of echo admin_url(); php function. I could hardcore it into footer.php but I dont want to do this. Because if I do it in the parent files a theme update overwrites it and if I place it inside child theme then that file won’t update with the latest theme updates.
What I want to do is use an function in the child theme functions.php to hook this code in. Can you elaborate on what the code to do this is? I’m presuming it is some kind of an action hook?
October 26, 2017 at 5:12 am #869043Hi,
1.) The css code above which is used to hide the social icons on mobile view is missing in your installation so you have to upgrade the theme. The latest version is 4.2.
2.) Please use the “avia_after_footer_columns”, “avia_before_footer_columns” or the “ava_before_footer” hook. Example.
add_action('ava_before_footer', 'ava_before_footer_mod', 10); function ava_before_footer_mod() { // do something here; }
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.