Forum Replies Created
-
AuthorPosts
-
Hi!
I’ll mark this thread for Kriesi. Personally I’m not aware of a code vulnerability but maybe he can find something.
Best regards,
PeterHi!
I’m not familiar with the Mailpoet plugin. The only (very general) hint I can give you is to increase the allocated php memory: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP to 128M. If this doesn’t help I hope the plugin author can provide a fix. Alternatively you can try a plugin like: Tribulant Newsletter Plugin or My Mail which works with our theme.
Best regards,
PeterMarch 26, 2014 at 9:59 am in reply to: Language flags from WPML at the top header right disappeared after update #243229Hey!
Please try this code:
@media only screen and (max-width: 767px){ .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul { float: right; } }
Best regards,
PeterMarch 26, 2014 at 9:57 am in reply to: WPML language switcher disappeared from secondary menue #243228Hi!
Yes, please create me an admin account and I’ll look into it.
Cheers!
PeterMarch 26, 2014 at 9:56 am in reply to: Problem with WPML and portfolio portfolio grid element #243227Hi!
1) I can’t access the server (server authentication fails)
2) Maybe the language cookie is missing. Try to clear your browser cache & delete cookies and then go to the editor page to translate it. See: https://kriesi.at/support/topic/wpml-homepage-blog-post-not-working/#post-230549
If this doesn’t help try to deactivate all plugins except WPML and check if the translated categories pop up. If yes a plugin conflicts with WPML and you need to activate them one by one to find the culprit. I.e. here: https://kriesi.at/support/topic/problems-adding-avia-button-in-spanish/ the “All-in-One Event Calendar by Timely” plugin caused a conflict.
Regards,
PeterMarch 26, 2014 at 9:49 am in reply to: DB Migrate: lost possibility to add Pages and Posts in Menu #243224Hey Cum_Vincere!
Maybe try to re-import the database again. This sounds like a db error to me.
Cheers!
PeterHey!
I just replaced
if(defined('ICL_SITEPRESS_VERSION') && defined('ICL_LANGUAGE_CODE'))
with
if(defined('ICL_LANGUAGE_CODE'))
The reason is that polylang claims to support WPML functions (see: http://polylang.wordpress.com/documentation/documentation-for-developers/compatibility-with-the-wpml-api/ ) and I thought that it might work with Enfold out of the box because we also rely on the WPML api. But unfortunately it does not work and it seems like additional work would be required to make the plugin/theme fully compatible.
Cheers!
PeterHi!
Did you try the “Datepicker” element: http://www.clipular.com/c/4949742886846464.png?k=TL4PjAR-Tcv4PtfuqAg_BltnjFI ? Kriesi also uses it on the demo page: http://kriesi.at/themes/enfold/shortcodes/contact-forms/
Cheers!
PeterHi Anja!
It’s a slide background image: http://www.clipular.com/c/4973811883573248.png?k=s_N_mtFGyEli78kC_1BWdIL2VMQ – it does not affect the entire slider like the “Global Settings” background but just one slide. You can’t find it in the media gallery because wordpress won’t import it as media attachment when you import the slider/theme demo data. If you want to add the image to your media gallery you can download the image here: http://kriesi.at/themes/wp-content/themes/enfold/config-layerslider/LayerSlider/avia-samples/slide1_Layer_1.png and then upload it by using the media gallery uploader.
Regards,
PeterHey fullvalue!
Please post a link to your video page – we’ll look into it.
Cheers!
PeterHey bleepstudio!
In enfold/functions.php search for:
'cart' => array( 'font' =>'entypo-fontello', 'icon' => 'ue859'),
and replace ue859 with any other char code. You can use the icon shortcode “char selector”: http://www.screenr.com/MYsN to get the character code.
Best regards,
PeterHi!
Open up wp-content/themes/enfold/includes/loop-search.php and replace:
$post_format = get_post_format() ? get_post_format() : 'standard';
with
$current_post = array(); $current_post['the_id'] = get_the_ID(); $current_post['post_format'] = get_post_format() ? get_post_format() : 'standard'; $current_post['content'] = get_the_excerpt(); $current_post['content'] = empty($current_post['content']) ? strip_shortcodes( get_the_content() ) : $current_post['content']; $current_post['title'] = get_the_title(); $current_post = apply_filters( 'post-format-'.$current_post['post_format'], $current_post ); extract($current_post);
and replace:
echo "<h2 class='post-title entry-title'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".get_the_title()."</a></h2>";
with
echo "<h2 class='post-title entry-title'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".$title."</a></h2>";
Best regards,
PeterHey!
Yes. Use this code:
add_filter('avf_option_page_init', 'add_option_tab'), 10, 1); //Adds option page to Enfold theme option panel function add_option_tab($avia_pages) { $avia_pages[] = array( 'slug' => 'mysettings', 'parent'=>'avia', 'icon'=>"hammer_screwdriver.png", 'title'=>__('My Tab','avia_framework')); return $avia_pages; }
to add a new option tab and this code:
add_filter('avf_option_page_data_init', 'add_option_to_settings_page', 10, 1); //Adds options to the "Custom Post Types" option page function add_option_to_settings_page($avia_elements) { $avia_elements[] = array( "slug" => "mysettings", "name" => __("Custom Message",'avia_framework'), "desc" => __("Please enter the message that you would like to dispay to your visitors.",'avia_framework'), "id" => "message", "type" => "textarea", "std" => "" ); return $avia_elements; }
to add new options to this tab. If you want to add options to an existing tab replace “mysettings” with the slug of the tab you want to modify.
Cheers!
PeterHey Chris!
Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons.php and replace:
$output .= "<a href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
with
$output .= "<a href='{$link}' class='avia-button some_class ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
and instead of some_class insert your class. If you don’t want to modify the parent theme copy the wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons.php file to your child theme and follow the instructions here: https://kriesi.at/support/topic/add-elements-to-visual-composer/
Best regards,
PeterMarch 26, 2014 at 9:12 am in reply to: Latest news – no image/icon + problem with parent of pages #243201Hey!
The menu (Appearance > Menus) and the breadcrumb structure are completely unrelated. You can rearrange the menu items without changing the parent – child relationship of the pages. If you want to set the hierarchy of the pages for a proper breadcrumb structure use the “parent page” option on the right side of the page editor: http://www.clipular.com/c/5250845864099840.png?k=uE0es-bxJhzDnKm18mNIvBgD9YM
Cheers!
PeterHi!
Please create me an admin account and post the login credentials as private reply – I’ll look into it.
Best regards,
PeterHey Shallnotbe!
Please try to insert this code at the very bottom of enfold/functions.php or the child theme functions.php file:
function widget_title_shortcode($output) { return do_shortcode($output); } add_filter('widget_title', 'widget_title_shortcode');
Best regards,
PeterMarch 26, 2014 at 8:31 am in reply to: Advanced layout editor to build your own blog layout? #243195Hey!
I’ll mark this thread for Kriesi.
Cheers!
PeterHi!
1) I can’t reproduce this “flip” but I’ll mark it for Kriesi – maybe he can reproduce it on a Mac and knows what causes this issue.
2) To remove the mouse hover effect insert this code into the quick css field:
.avia_desktop .av-masonry-entry:hover .av-masonry-image-container { -webkit-transform: none; -moz-transform: none; transform: none; }
Regards,
PeterMarch 26, 2014 at 8:24 am in reply to: Several Issues: Portfolio Ajax, Image file name appearing on hover, Big Preview #243193Hi!
Please try to deactivate the “force same size” option on the gallery settings page and remove Ismaels code: http://www.clipular.com/c/4558900862910464.png?k=W6jIMFeM6rRErlw1cmVNl0_119M
Best regards,
PeterHi Alisa!
You can re-size the main product image with:
.template-shop .single-product-main-image .images a { max-width: 245px; }
Insert the css code into the quick css field (Enfold > Styling) or into your child theme style.css.
Cheers!
PeterHi!
1) normal is not a valid value. Please use this code instead:
.avia-icon-list .iconlist_title { text-transform: none !important; }
2) To change the font size use:
#top .toggle_content, .js_active .toggler { font-size: 13px; }
Cheers!
PeterHey lpfa!
1) Please try to clear the wordpress cache (SuperCache, W3TC) if you use a cache plugin.
2) If this doesn’t help please deactivate all third party plugins and check if a plugin conflicts with LayerSlider
3) If 2) doesn’t solve the problem please create me an admin account and I’ll look into it.
Cheers!
PeterHi!
Sehr gut :)
Regards,
PeterMarch 26, 2014 at 8:10 am in reply to: Full-Width Masonry: change size each thumbnail and size each lightbox #243188Hey!
You can try fancybox: https://github.com/fancyapps/fancyBox . I created a child theme which replaces prettyphoto with fancybox. You can download it here: http://www.mediafire.com/?05ho02ecut516hu
Cheers!
PeterMarch 26, 2014 at 8:08 am in reply to: Layout challenge: 2 x 1/2 Elements, one with valign baseline #243187Hey!
Please add the button into the right column. It’s hard to test or write css code without seeing the effects.
Cheers!
PeterHey Jonathan!
Please read Kriesi’s answer here: https://kriesi.at/support/topic/missing-masonry-images-in-safari/#post-239553
Regards,
PeterMarch 26, 2014 at 8:02 am in reply to: Left or Right Most Alignment in color section without large padding or spacing #243181Hi codepantry!
You can use the “Custom ID” field: http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png to add a custom id to each color section. You can use this id to apply some custom style code to the text within this section. I.e. if you insert “portfolio” into the field you can style your text with:
#top #portfolio img{ float:left; } #top #portfolio p{ float:right; }
This is just an example – obviously you can use the #portfolio selector to determine the position of divs, etc. too.
Best regards,
PeterHey!
Open up wp-content/themes/enfold/includes/loop-index.php and delete:
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>"; }
Then replace:
echo '</footer>';
with
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 '</footer>';
Cheers!
Peter -
AuthorPosts