Forum Replies Created
-
AuthorPosts
-
June 30, 2014 at 12:00 am in reply to: Icon box icons not displaying in several browser instances #285050
You are welcome, always glad to help :)
Regards,
JosueHey!
I know what is causing the issue and the fix, but it requires some coding in the theme files, that’s why i’m asking for an admin account. Anyhow, i’ll leave instructions here so you can do it yourself:
1. Open /framework/php/class-style-generator.php and look for line 365:
$this->extra_output .= "<link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=".this->google_fontlist."' type='text/css' media='all'/> \n";Replace it by this:
$this->extra_output .= "<link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=".apply_filters('avf_google_fontlist', $this->google_fontlist)."' type='text/css' media='all'/> \n";2. Add this to the very end of functions.php:
function add_subset_func($fontlist) { $fontlist .= "&subset=latin,latin-ext"; return $fontlist; } add_filter('avf_google_fontlist', 'add_subset_func');This filter will be included in the next update.
Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueYou are welcome, thanks for the kind words. You can leave a review on Enfold Themeforest page.
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.custom-background{ padding: 20px; }Cheers!
JosueJune 29, 2014 at 2:21 am in reply to: Changes made not visible on frontpage and on LayerSlider #284913I suggest using the google fonts that come with Enfold, could you detail what’s exactly not working?
Best regards,
JosueCan you post a link to the page you are trying this?
Best regards,
JosueOk, let us know how it goes.
Regards,
JosueJune 29, 2014 at 12:25 am in reply to: Change Header Social Media Icon into Image and Remove the hover effect #284901Hope it does the trick :)
June 29, 2014 at 12:19 am in reply to: Change Header Social Media Icon into Image and Remove the hover effect #284898Hey!
Try adding this code to the Quick CSS:
#header .social_bookmarks li.social_bookmarks_twitter a:before { content: ""; } #header .social_bookmarks li.social_bookmarks_twitter a{ background: url(https://monarchwholesalers.com/wp-content/plugins/social-media-widget/images/default/32/twitter.png) !important; height: 32px; width: 32px; }Cheers!
JosueHi Andy!
You could try linking to the attachment post type, like ?attachment_id=3316.
Is this question related to https://kriesi.at/support/topic/search-and-replace-custom-link-urls/?
Best regards,
JosueHi!
I’ll tag this thread to Kriesi.
Best regards,
JosueCreate a test.php file on your server with this content and check if it works:
<?php echo date(‘Y’); ?>If it doesn’t return anything, then it’s a server issue and you’d need to contact your hosting provider regarding that.
Best regards,
JosueHey!
1. Yes it is always recommended to have a child theme: http://kriesi.at/documentation/enfold/using-a-child-theme/
2. You could set a class of “custom-background” to those elements and then in Quick CSS:
.custom-background{ background: red !important; }Best regards,
JosueJune 28, 2014 at 11:55 pm in reply to: Changes made not visible on frontpage and on LayerSlider #284888Hey!
Have you tried disabling W3 Total Cache?
Best regards,
JosueHey!
There are other files involved in the contact form redirect functionality:
/config-templatebuilder/avia-shortcodes/contact.php
/js/shortcodes.jsReplacing those may cause some havoc on other elements, to be honest i think it would be best to update the whole theme.
Regards,
JosueHi!
Try changing the function to:
function year_func($atts) { return date('Y'); } add_shortcode( 'year', 'year_func' );You could also try replacing the “year” for another string, maybe there is a plugin that already has registered that shortcode name.
Cheers!
JosueHi Dogan,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueJune 28, 2014 at 11:33 pm in reply to: Change Header Social Media Icon into Image and Remove the hover effect #284882I see you are using another approach now (img tag instead of background):

Best regards,
JosueJune 28, 2014 at 11:31 pm in reply to: Alternative Content Area – Adding specific images to each page #284881You are welcome, always glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
#main .container_wrap .container main, #main .container_wrap .container { max-width: 800px; } @media only screen and (max-width: 989px) { .avia-menu-text { font-size: 11px !important; } }Cheers!
JosueYou are welcome, always glad to help :)
Regards,
JosueYou are welcome Michiel, always glad to help :)
Regards,
JosueJune 28, 2014 at 9:06 pm in reply to: Logo in mobile (responsive) view stretched and menu on top of it #284871You are welcome, always glad to help :)
Regards,
JosueYou are welcome :)
Change the code to:
#av_section_1 .av_textblock_section:last-child .avia_textblock .su-button-center { float: left !important; margin: 0 6px; } #av_section_1 .av_textblock_section:last-child { max-width: 450px; margin: 0 auto; }Regards,
JosueOh, you are using a button from a third-party plugin, we usually don’t cover these kind of modifications but try adding this to the Quick CSS:
#av_section_1 .av_textblock_section:last-child .avia_textblock .su-button-center { float: left !important; } #av_section_1 .av_textblock_section:last-child { width: 425px; margin: 0 auto; }Regards,
JosueHi!
If you are using a shortcode then simply add the custom_class=’alignleft’ attribute at the end of each button, like:
[av_button label='Click me' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' custom_class='alignleft']
Cheers!
Josue -
AuthorPosts
