Forum Replies Created
- 
		AuthorPosts
 - 
		
			
				
February 13, 2016 at 12:37 am in reply to: Messed Up Special Character In Responsive Table Header – BUG? #582567
Hi,
Open /enfold/config-templatebuilder/avia-shortcodes/table.php and look for this line:
$responsive_style .= ".avia-table-".self::$table_count." td:nth-of-type(".($counter + 1)."):before { content: '".$row['content'][$counter]['content']."'; } ";Replace it by this:
$responsive_style .= ".avia-table-".self::$table_count." td:nth-of-type(".($counter + 1)."):before { content: '".html_entity_decode($row['content'][$counter]['content'])."'; } ";Regards,
JosueFebruary 12, 2016 at 11:50 pm in reply to: Enfold – Custom Font – Add Code to Header – Typography.com #582549Glad to help Anthony :)
Regards,
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueFebruary 12, 2016 at 12:41 pm in reply to: Enfold – Custom Font – Add Code to Header – Typography.com #582182Hey!
Try adding this code to the Quick CSS:
.slideshow_align_caption { vertical-align: top; }Cheers!
JosueFebruary 12, 2016 at 12:38 pm in reply to: How to define a full width section above footer on almost every page of site #582179Hi,
Can you post the link to your website please?
Regards,
JosueFebruary 11, 2016 at 7:40 pm in reply to: Enfold – Custom Font – Add Code to Header – Typography.com #581842Hi,
Can you post the link to your website please? what kind of slider are you using?
Regards,
JosueFebruary 11, 2016 at 6:58 pm in reply to: Using ALB with custom post type and meta information #581824You are welcome Lyse, glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.amzn-native-container { display: block !important; width: 100% !important; }Cheers!
JosueIt shouldn’t, the “fix” doesn’t require you to do remove ALL image sizes, just a few or the ones you don’t use.
Regards,
JosueAlthough we appreciate the offer i’m afraid most of us don’t have the time to do this kind of work (it would require an extensive development). Please note that you can request a customisation quote from a third-party provider here
Regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueFebruary 11, 2016 at 6:20 pm in reply to: Using ALB with custom post type and meta information #581799Hey!
Make sure there are Tags associated with the Post being shown. Regarding showing related posts you could use a Portfolio/Masonry set to show items from a specific Tag.
Regards,
JosueHi!
I added it to the last footer column, check it.
Regards,
JosueFebruary 11, 2016 at 6:12 pm in reply to: issue with style.css dynamically minified and not updated #581791Hey!
Would be better to have a FTP access, can you provide us that via private reply?
Regards,
JosueHere – http://screencast.com/t/MiatLalhmZ
Cheers!
JosueFebruary 10, 2016 at 11:27 am in reply to: Align Menu on the bottom of header instead of center #580996Hey!
Change the code to:
.main_menu ul:first-child > li > a { line-height: 170px !important; } .header-scrolled .main_menu ul:first-child > li > a { line-height: 60px !important; }Best regards,
JosueFebruary 10, 2016 at 11:26 am in reply to: Using ALB with custom post type and meta information #580994Hey!
For tags:
function custom_shortcode_func2() { ob_start(); echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong> '); $output = ob_get_clean(); return $output; } add_shortcode('the_post_tags', 'custom_shortcode_func2');For the rest you can use ALB elements (share, comments).
Regards,
JosueHey!
That modded avia.js won’t work with the newer version Enfold, i’d suggest reverting it and using a Masonry instead, there’s an option to set a “Large” gap – http://screencast.com/t/pCtE1nodlx
Cheers!
JosueFor some reason the main search container is being hidden by CSS (when using Enfold) so i tried adding this to Quick CSS and the search bar is now visible:
div#amzn-native-ad-0 { display: block !important; width: 100% !important; }Regards,
JosueFebruary 10, 2016 at 2:25 am in reply to: Align Menu on the bottom of header instead of center #580720Hey!
Try adding this code to the Quick CSS:
.main_menu ul:first-child > li a { line-height: 170px !important; } .header-scrolled .main_menu ul:first-child > li a { line-height: 60px !important; }Cheers!
JosueHi Jon!
You could try using a plugin like:
https://wordpress.org/plugins/advanced-responsive-video-embedder/Cheers!
JosueFebruary 10, 2016 at 1:54 am in reply to: Using ALB with custom post type and meta information #580716Hey!
Try adding this at the very end of your theme / child theme functions.php file:
function custom_shortcode_func() { ob_start(); echo "<span class='post-meta-infos'>"; echo "<time class='date-container minor-meta updated'>".get_the_time(get_option('date_format'))."</time>"; echo "<span class='text-sep text-sep-date'>/</span>"; if ( get_comments_number() != "0" || comments_open() ){ echo "<span class='comment-container minor-meta'>"; comments_popup_link( "0 ".__('Comments','avia_framework'), "1 ".__('Comment' ,'avia_framework'), "% ".__('Comments','avia_framework'),'comments-link', "".__('Comments Disabled','avia_framework')); echo "</span>"; echo "<span class='text-sep text-sep-comment'>/</span>"; } if(!empty($cats)) { echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." "; echo $cats; echo '</span><span class="text-sep text-sep-cat">/</span>'; } echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." "; echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>'; echo '<span class="vcard author"><span class="fn">'; the_author_posts_link(); echo '</span></span>'; echo '</span>'; echo '</span>'; echo '</span>'; $output = ob_get_clean(); return $output; } add_shortcode('the_post_meta', 'custom_shortcode_func');Then use
[the_post_meta]to show the post meta.Cheers!
JosueGlad you got this solved, although this is common issue it doesn’t occur to everyone because the source of it is caused by a server limitation (the server is unable to re-create the image that many sizes so we remove them with that code).
Regards,
JosueFebruary 9, 2016 at 12:35 pm in reply to: Enfold – Custom Font – Add Code to Header – Typography.com #580345Hey Anthony,
Try with this:
#top .av-special-heading, #top .main_menu ul:first-child > li > a{ font-family: "optimusprinceps"; }Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueFebruary 8, 2016 at 10:46 pm in reply to: Limiting Portfolio Item next/back navigation via category #579943You are welcome, glad to help :)
Regards,
JosueThat code should’ve worked too, can you please create me a WordPress administrator account? post it here as a private reply.
Best regards,
JosueFebruary 8, 2016 at 10:22 pm in reply to: Enfold – Custom Font – Add Code to Header – Typography.com #579928Hey!
The following CSS code should do the trick:
h2.avia-caption-title { font-family: "optimusprinceps"; }Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHi!
No, not there. Try the following:
1. Install this plugin.
2. Go to Plugins > Edit Functions.
3. Paste the code there and Save.Regards,
Josue - 
		AuthorPosts
 
