Forum Replies Created
-
AuthorPosts
-
August 28, 2013 at 3:42 pm in reply to: [WPML] Secondary language posts not showing in "Blog Posts" in the frontpage #138003
Please make sure you’re using the latest version of WPML (2.9.x) and the latest version of the theme (Enfold 2.0.x). Then deactivate all plugins except WPML and WooCommerce and check if the issue persists. If yes please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it. However if it works afterwards activate the plugins one by one until the blog element breaks again…
Hi!
Please elaborate – what is “multilingual page”? Do you use WPML to translate the content?
Best regards,
Peter
Afaik cpanel itself doesn’t allow you to manipulate the database but it comes with phpmyadmin which allows you to import any sql database file. You can use WP MIGRATE DB to generate it and then use phpmyadmin to import it on the other server.
Hey!
You can hide it with following css code
.avia-menu-fx, .current-menu-item>a>.avia-menu-fx, li:hover .current_page_item>a>.avia-menu-fx {
display: none;
}Regards,
Peter
I couldn’t find the analytics code anywhere in the html source code. Make sure you paste the entire analytics code into the “Google Analytics Tracking Code” option field (and not just the tracking id) and clear your caches (wordpress & browser cache).
Re link attribution – maybe this article will help you: https://support.google.com/analytics/answer/2558867?hl=en
Actually this is not possible because the theme just adds a static margin which doesn’t depend on the slider size on the left. If you want to reduce the space (margin) between the images you can insert following code into the quick css field
.avia_image.avia-align-center {
margin: 0 auto 0 auto;
}but then the images won’t line up when you view the website in a “fullwidth” browser window. Either way you can’t always align these images with the slideshow on the left.
Hi!
You can change it with
#socket .menu {
font-family: Arial;
}Insert the code into the quick css field and set another font family value if you like.
Regards,
Peter
Hi,
Open up index.php and replace
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
with
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'h1', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
Hi,
Did you test the caption? I’m pretty sure that the prettyphoto description & title work just fine because I worked on the gallery element and I took care of the image/link structure. The image “description” (you can edit/add it on the media attachment screen) is used as link title and prettyphoto will display the link title as “description”. The image title is used for the title at the top of the lightbox.
Hi!
Personally I didn’t test or use this plugin yet and I can’t say if it works or not. Probably it will work but maybe some css adjustments are required…
Best regards,
Peter
Hey!
Try to insert following code into the quick css field
.html_boxed #main {
overflow: visible;
}Best regards,
Peter
1) Please try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
2) If 1) doesn’t help try to re-upload the latest version of the theme. I’d also suggest to re-download the theme files from themeforest again to be on the safe side (corrupt files, etc.)
Hi!
Please insert following code into the quick css field
#top .social_bookmarks_youtube {
text-indent: -25px;
line-height: 30px;
font-family: 'youtubefont';
font-size: 1.5em;
}Best regards,
Peter
Hey!
Glad you found a solution :)
Regards,
Peter
August 27, 2013 at 10:23 am in reply to: Search Function digs too deep and pick up HTML code #137743Btw it seems like your excerpt contains html tags which can break the html structure of the search result field. Add following code to the bottom of functions.php to remove these tags from the search result excerpt:
add_filter('avf_ajax_search_excerpt','avia_strip_search_result_tags', 10, 1);
function avia_strip_search_result_tags($content){
$content = strip_tags($content,'');
return $content;
}August 27, 2013 at 10:13 am in reply to: Search Function digs too deep and pick up HTML code #137741Hey!
I don’t know this plugin and you need to ask the plugin author. The documentation doesn’t mention a search function which can be used to query the search results (similar to relevanssi_do_query()…).
Regards,
Peter
Hey!
Please update Enfold to the latest version (2.0.x). You’re using 1.5 at the moment.
Best regards,
Peter
Hi!
You can use another predefined color scheme to change the button color.
Best regards,
Peter
Just set the width of the image and the logo should resize just fine. So instead of
.logo, .logo a, .logo a img {
width: 350px;
height: 117px;
}use
.logo, .logo a, .logo a img {
width: 350px;
}Please reupload the woocommerce plugin folder and check the folder permissions. It seems like at least one js file is missing or the sever blocks the access to it and this causes a global js error which breaks our slider script too. Your website gives me following error
Failed to load resource: the server responded with a status of 406 (Not Acceptable) http://cmp.christophermatthewspub.com/wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.min.js?ver=1.3.1
You can also deactivate WooCommerce to fix the issue but obviously this is not a solution if you want to use the plugin.
Hi!
Please update to the latest version (Enfold 2.0.x). We fixed a bug in the post slider element which can break the sidebar & widget areas – see: https://kriesi.at/support/topic/bug-custom-sidebar-not-showing-up-when-other-loop-is-on-page#post-131029
Regards,
Peter
Actually Ismaels code will affect the Fullwidth easy slider. In enfold/js/shortcode.js replace
//show the first slide
this.$slides.eq(0).css({visibility:'visible', opacity:0}).avia_animate({opacity:1}, function()
{
$(this).addClass('active-slide');
});with
this.$slides.eq(0).css({visibility:'visible', opacity:1}).addClass('active-slide');
Actually we just use the standard search query and we have no influence on the search results. You can use this plugin to maximize the search power of your website: SearchWP
Refer to this link in order to integrate the plugin on ajax search: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/
The column shortcodes are just “containers” for other shortcodes. If you want to insert text content, images, etc. you need to select another element and drag’n’drop it into the columns area. Eg you can use a textblock element to add text to an existing column. I made a short video to demonstrate the workflow: http://www.screenr.com/N9OH
It seems like the standard search query doesn’t work in your case. Eg
http://www.lighthousemktg.com.au/?s=test doesn’t work but the same search works on the demo page:
http://kriesi.at/themes/enfold/?s=test
Try following
1) Deactivate all plugins and check if the search works. If yes activate them one by one until the search doesn’t work again.
2) If 1) does not solve the problem upload all wordpress and theme files again. Use the latest versions (wp3.6 and Enfold 2.0.x).
3) If 2) doesn’t work go to Settings > Permalinks and hit the “save” button to flush the rewrite rules.
Hey!
The theme doesn’t include such a file. I’d suggest to deactivate all plugins and to activate them one by one to find the plugin which adds this code to the html output.
Best regards,
Peter
August 27, 2013 at 7:04 am in reply to: Disable Lightbox on Ajax Portfolio Featured Image Only #137574Hey!
You need to replace following code in avia.js:
$.avia_utilities.avia_ajax_call = function(container)
{with
$.avia_utilities.avia_ajax_call = function(container)
{
jQuery('.portfolio_preview_container .portfolio-preview-image').find('img').unwrap();Best regards,
Peter
No, the slider does not support a different slide direction at the moment. You can add this idea to the feature request thread but tbh you’re the first person who requests this feature and I doubt many users really need it.
Hey!
Try following css code
.responsive .container .avia_mega_div.avia_mega1.three.units {
width: 230px;
}Best regards,
Peter
Try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodescolumns.php and replace
if($first)
{
if(!empty($meta['siblings']['prev']['tag']) &&
in_array($meta['siblings']['prev']['tag'], array('av_one_full','av_one_half', 'av_one_third', 'av_two_third', 'av_three_fourth' , 'av_one_fourth' , 'av_one_fifth' ,'av_textblock')))
{
avia_sc_columns::$extraClass = "column-top-margin";
}
else
{
avia_sc_columns::$extraClass = "";
}
}with
if($first)
{
if(!empty($meta['siblings']['prev']['tag']) &&
in_array($meta['siblings']['prev']['tag'], array('av_one_full','av_one_half', 'av_one_third', 'av_two_third', 'av_three_fourth' , 'av_one_fourth' , 'av_one_fifth' ,'av_textblock')))
{
avia_sc_columns::$extraClass = "column-top-margin";
}
else
{
avia_sc_columns::$extraClass = "";
}
}
if(in_array( $shortcodename, array('av_one_third', 'av_two_third', 'av_three_fourth' , 'av_one_fourth' , 'av_one_fifth' ) )) $meta['el_class'] .= ' avia-small-width-slider '; -
AuthorPosts