Forum Replies Created
-
AuthorPosts
-
Hola,
Creo que ya esta, si ves que algún cambio no toma efecto lo que tienes que hacer es vaciar el caché de GoDaddy.
Saludos,
JosueHi!
Look in Enfold > General Styling.
Cheers!
JosueHola!
El usuario que has proporcionado no funciona.
Saludos,
JosueYou are welcome, always glad to help :)
Regards,
JosueAugust 16, 2014 at 6:57 pm in reply to: Social media buttons in excerpt section bellow or next to read more #305337Hi Lexie!
I’m not familiar with those plugins, and debugging third party plugins is outside of our scope. Basically what you need to do is replace the second line with any [shortcode] or PHP function the plugin offers to make its buttons appear (the function_exists conditional is not mandatory).
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, ''); $prepare_excerpt .= "SOMETHING";Also, you have access to the permalink and title, so you can even build your own social share links:
$prepare_excerpt .= get_permalink($the_id).get_the_title($the_id);For example, to get the like count button:
$prepare_excerpt .= '<iframe src="//www.facebook.com/plugins/like.php?href='.get_permalink($the_id).'&width&layout=button_count&action=like&show_faces=false&share=false&height=21&appId=217816428346969" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:21px;" allowTransparency="true"></iframe>';Best regards,
JosueAugust 16, 2014 at 6:37 pm in reply to: Insert search button and widget area in the secondary menu bar #305331Hey Cerasela!
Sorry for not explaining, add it to Quick CSS (Enfold > General Styling).
Regards,
JosueAugust 16, 2014 at 2:42 am in reply to: Fullwidth slider above a full screen gallery NOT WORKING #305155Hey Steven!
Yes, try:
#home-shop-section { height: 0 !important; min-height: 0 !important; }Regards,
JosueHi Amir!
I understand now, but that’s definitely not possible to do in CSS level, it would require some JavaScript to swap them automatically. As an alternative, you could create two version of those three icons (one for mobiles, one for desktop, wrapped in color section with different IDs) and hide them accordingly:
#onlymobile{ display: none; } @media only screen and (max-width: 767px) { #onlymobile{ display: block; } #onlydesktop{ display: none; } }Regards,
JosueAugust 16, 2014 at 2:32 am in reply to: Social media buttons in excerpt section bellow or next to read more #305152Hey Lexie!
It tested it on my end and it worked, for addtoany it would be similar:
/config-templatebuilder/avia-shortcodes/postslider.php, line 313:
if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) $prepare_excerpt .= do_shortcode("[addtoany]");Best regards,
JosueHi,
1. Open functions-enfold.php and look for line 630:
$transparency = get_post_meta($post_id, 'header_transparency', true);2. Replace it by this:
$transparency = apply_filters("avf_header_transparency", get_post_meta($post_id, 'header_transparency', true));3. Add this to the theme / child theme functions.php:
function enable_header_transparency_by_default() { return "header_transparency"; } add_filter('avf_header_transparency', 'enable_header_transparency_by_default');That will enable header transparency on all Posts/Pages.
Regards,
JosueHey!
Use a stretched layout and try with this code:
#main .container { width: 98% !important; } #main .content{ width: 100% !important; }Cheers!
JosueI see, the easiest way to fix that would be to simply swap the order in the layout builder for the Farsi version.
Regards,
JosueAugust 16, 2014 at 1:43 am in reply to: Fullwidth slider above a full screen gallery NOT WORKING #305146Hi Steven!
Yes, that’s possible, but does require you to edit the theme files, specifically js/shortcodes.js, lines 2009, 2010, 2011:
wh75 = Math.round( wh100 * 0.75 ), wh50 = Math.round( wh100 * 0.5 ), wh25 = Math.round( wh100 * 0.25 );Change them to:
wh75 = Math.round( wh100 * 0.9 ), wh50 = Math.round( wh100 * 0.5 ), wh25 = Math.round( wh100 * 0.1 );Best regards,
JosueAugust 16, 2014 at 1:37 am in reply to: blog post with custom full width slider image will not change on post pages #305144Hey!
This is the shortcode that is appearing on single posts:
Now you just need to change that; while editing this page, look for the debug area below the Layout Builder, you’ll note a similar code (av_slideshow…), paste that in functions.php.Best regards,
JosueHi Amir!
I’m not sure if i could note it, but i checked the iconboxes you have on your homepage and they keep the same structure in desktop and mobile (people > graph > plane):

Best regards,
JosueAugust 16, 2014 at 12:33 am in reply to: Custom Social Bar Icons or button (Replace/Add) [Enfold] #305135August 16, 2014 at 12:14 am in reply to: Fullwidth slider above a full screen gallery NOT WORKING #305125Hi,
The problem is that the color sections height setting works as minimum height, not maximum height, so you must be careful of what content you put there.
Please review the site now, the adjustments i made were:
1. Reduced the slider image size setting (1500×430) so it doesn’t overflow the 75% maximum height.
2. Removed the hr separator (this creates too much extra space) in the 25% section and instead used a border-top CSS:#bottom-section { border-top: 5px solid black; }Best regards,
JosueAugust 15, 2014 at 11:48 pm in reply to: Fullwidth slider above a full screen gallery NOT WORKING #305119Hi,
Can you please create me an administrator account? post it here as a private reply.
Edit: Nevermind, i just saw them on your first post, i’ll try to do some adjustments.
Regards,
Josue-
This reply was modified 11 years, 8 months ago by
Josue.
Hey Amir!
Try with this code:
html[lang="fa-IR"] *{ font-family: 'BBCNassim' !important; }To fix the social bookmarks:
@media only screen and (min-width: 767px) { #top.rtl .social_bookmarks li { float: right; } }Cheers!
JosueHi!
That space is coming from this text you have here in the source:

I’m not sure how it got there, try checking in the header.php file.
Regarding the icons, can you please create a mockup/screenshot of how they should look in RTL?
Cheers!
JosueWrap the contents you want to be boxed inside a color section (with ID “boxed-section”), like this. Then add this to the Quick CSS (remove the old code):
#boxed-section{ background: #d1d1d1 !important; } #boxed-section .container { padding: 20px; }Regards,
JosueHi!
This is currently a non-theme related problem with Safari and HTML5 videos (w/ covers) set to 100% width, as you do here:
<video width="100%" poster="http://puoianchetu.mokabox.com/wp-content/uploads/2014/07/poster_video_home.jpg" controls="controls"> <source src="http://puoianchetu.mokabox.com/wp-content/uploads/2014/06/Video_Silvia_Puoi-Anche-tu-LQ02.mp4" type="video/mp4"> </video>A solution would be to set fixed width to the video in Safari mobile, something like this will do it (i’m assuming you set an ID to the video):
.avia-webkit-7 #homevideo{ max-width: 320px; margin: 0 auto; display: block; }Regards,
JosueAugust 15, 2014 at 8:43 pm in reply to: Fullwidth slider above a full screen gallery NOT WORKING #305074Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 989px) { .av-minimum-height-75 .container { height: auto !important; } }That will reduce the height of the 75% container on smaller screens, leaving more space for the section below.
Cheers!
JosueHi!
Try using this code instead for the font-face:
@font-face { font-family: 'BBCNassim'; src: url( "http://f.manmote.com/font/BBCNassim.eot" ); src: url('http://f.manmote.com/font/BBCNassim.eot?#iefix') format('embedded-opentype'), url('http://f.manmote.com/font/BBCNassim.woff') format('woff'), url('http://f.manmote.com/font/BBCNassim.ttf') format('truetype'); }Regards,
JosueYou are welcome, glad to help.
Best regards,
JosueHey Ingrid!
Share buttons only appear on single posts by default. Try adding this at the very end of your theme functions.php file:
add_action('ava_after_content', 'avia_add_social_toolbar', 10, 2); function avia_add_social_toolbar($id = "", $context = "") { if(!is_singular('post')) avia_social_share_links(); }Cheers!
JosueYou are welcome, glad to help :)
Regards,
JosueAugust 15, 2014 at 7:30 pm in reply to: Custom Social Bar Icons or button (Replace/Add) [Enfold] #305044Hi Riggs!
Do you have that button in HTML format? try pasting it here:
http://screencast.com/t/ZCd4fo3U6dx5Cheers!
Josue -
This reply was modified 11 years, 8 months ago by
-
AuthorPosts
