Forum Replies Created
-
AuthorPosts
-
Hey!
Can you please give us a link to the website? Do you have any plugins installed? Please deactivate them then try again.
Cheers!
IsmaelFebruary 3, 2014 at 4:48 am in reply to: Yoast SEO Plugin makes some pages go missing… incompatibility? #218592Hey!
Did you try this code on functions.php?
add_action('init','remove_yoast_analysis'); function remove_yoast_analysis(){ remove_filter('wpseo_pre_analysis_post_content','avia_wpseo_pre_analysis_post_content_fix', 10, 1); }Cheers!
IsmaelHi!
Please try this one:
.page-id-421 .content { padding: 5px 0 5px 0 !important; }Remove browser cache then reload the page.
Best regards,
IsmaelHi chrisholemar!
You can add this on Quick CSS:
.widgettitle { color: red; }Best regards,
IsmaelHi Vital!
You can add this one. Specify the min and max height of the grid preview images:
.grid-image img { width: 100%; display: block; max-height: 200px; min-height: 200px; }Best regards,
IsmaelHi der_mueller!
Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 412:
$output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false)).">".$excerpt."</div>" : '';Replace it with with this code:
$output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false))."><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$excerpt."</a></div>" : '';Add this on Quick CSS to change the text color of the excerpt:
.grid-entry-excerpt.entry-content a { color: gray; }Regards,
IsmaelFebruary 3, 2014 at 3:53 am in reply to: I want to show right contents first & left contents in the mainpage mobile #218578Hi wethepublic!
Add this on Quick CSS to remove the banner on mobile view:
@media only screen and (max-width: 768px) { .home .avia_image.avia-builder-el-1.el_after_av_layerslider.avia-builder-el-first.avia-align-center { display: none; } }It is not possible to switch the content on mobile view.
Regards,
IsmaelHey!
Please add this on Quick CSS:
.avia_mobile #top #searchsubmit, .avia_mobile .ajax_load { height: 42px; }Regards,
IsmaelHey karios!
The image url is incorrect. Please check.
http://www.kariosgames.comhttp//www.kariosgames.com/wp-content/uploads/2014/01/appStore.png
I think it should be:
http://www.kariosgames.com/wp-content/uploads/2014/01/appStore.png
Regards,
IsmaelHey!
Can you please give us a link to the page with the table? Maybe specifying a minimum height for the table rows will help. Add this on Quick CSS:
.pricing-table>li { min-height: 70px; }Cheers!
IsmaelHi!
You’re using a very old version of the theme. Please download the latest version on your themeforest account then update the theme via FTP. Please watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
Regards,
IsmaelHi!
Glad you figured it out. You can also specify a minimum or max height for the portfolio thumbnails if necessary. :)
Cheers!
IsmaelHi Fiorilla!
Are you talking about the Special Heading element? You can add this on Quick CSS to decrease the top margin:
.av-special-heading { margin-top: 10px; }Regards,
IsmaelHi Fiorilla!
You can use this:
div .main_color .tabcontainer .tab { background: blue; border-color: red; }Best regards,
IsmaelHey!
Sadly, the functions.php and register-admin-options.php files will be overwritten when you update the theme.
Regards,
IsmaelHey controlC!
You can refer to this link: http://docs.woothemes.com/document/installation/
Best regards,
IsmaelFebruary 2, 2014 at 4:12 am in reply to: Blog grid: How to sort/display 1 category chronologically and 1 alphabetically? #218347Hey!
Please replace it with this:
add_filter('avia_post_slide_query','avia_order_by_random', 10, 2); function avia_order_by_random($query, $params) { $query['orderby'] = 'title'; $query['order'] = 'ASC'; $terms = explode(',', $params['categories']); if (!empty($terms) && in_array(55, $terms)) { $query['orderby'] = 'date'; } if (!empty($terms) && in_array(56, $terms)) { $query['orderby'] = 'date'; } return $query; }Best regards,
IsmaelHi revovideo!
On what browser and OS are you testing this with? Chrome does not support RSS feeds, you need to install a third party browser extension to be able to read rss feeds. On the other hand, Firefox does have a built in rss extension.
Regards,
IsmaelHey toddgeist!
Please add this on functions.php to disable the video element:
function ava_remove_video_element() { echo '<style type="text/css">.avia-tab.avia-tab-3 a[data-avia-tooltip="Display a video"]{display: none;}</style>'; } add_action('admin_head', 'ava_remove_video_element');Best regards,
IsmaelHey toddgeist!
You will lose the lightbox functionality for images and videos. Lightbox is the modal box that pop up when you click on an image or text linking to a video or image.
Cheers!
IsmaelHi!
We can’t see the website. Is it using an Enfold theme? Please post a screenshot. It says:
Your access to this site has been limitedRegards,
IsmaelHey msfoto!
Edit functions.php, find this code:
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)Change the height then regenerate the thumbnail using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Regards,
IsmaelHi!
Please try this one:
if(empty($this->loop[$key]['content'])) { $this->loop[$key]['content'] = avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, ''); } $prev_img_id = get_post_meta($id, 'artist_logo', true ); if($prev_img_id != '') { if($prev_img_id) $image_attributes = wp_get_attachment_image_src($prev_img_id, $size = 'full', $icon = false); // returns an array if(!empty($image_attributes[0])) $this->loop[$key]['content'] = '<img src="'.$image_attributes[0].'" />'; }Best regards,
IsmaelHi!
Instead of using the “Share” url on the youtube page. Copy the actual url on the browser and use it instead.
http://www.youtube.com/watch?v=mkfIoNxOhOM&feature=youtu.beRegards,
IsmaelHi!
Add the 2/3 and 1/3 column then insert a Text Block inside the 2/3 column. Edit the text block then add a column shortcode. I know this is not the easiest way but it works. Please hire a freelance developer if you want to modify the avia layout builder. You can also request the feature here: https://kriesi.at/support/topic/enfold-feature-requests/
Best regards,
Ismael -
AuthorPosts

