Forum Replies Created
-
AuthorPosts
-
October 18, 2013 at 7:59 am in reply to: event espresso calendar not formatting correctly with enfold theme #177284
Hi!
I see no easy way to fix the issue because the position of the calendar data is generated dynamically and extending the height of the entire table row just because of one or two items doesn’t make sense imo. You can hide the preview image with following css code though
#espresso_calendar .thumb-wrap img { display: none; }
– then the data should fit into the table cells.
Cheers!
PeterHey!
The next version of Enfold will support a masonry grid (grid supports uneven rows and displays them like Pinterest). The 2.3.2 version or older versions do not support such a grid.
Cheers!
PeterHi!
Please try to modify /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php a bit. Open up the file and replace:
$fstring = $font_list['folder'].'/'.$font_name;
with
$fstring = $font_list['folder'].'/'.$font_name; if(!empty($_SERVER['HTTPS'])) { $fstring = str_replace('http://', 'https://', $fstring); }
Regards,
PeterOctober 17, 2013 at 11:51 pm in reply to: Featured Post image size not showing properly + no lightbox preview #177216Hello!
You need to select the “Single Author, big preview Pic (no author picture is displayed, feature image is big)” blog layout if you want to show a big preview image.If you select the “grid layout” the single post layouts look different. I modified the loop-index.php template a bit and it looks like the demo page now.
Regards,
PeterHello!
Ok, fair enough. Tbh I don’t think Enfold is incompatible with Gravity Forms just because the “Insert Shortcode” button doesn’t work with the textblock editor (especially because you can use it with the default editor and copy/paste the shortcode) but feel free to use another plugin.
Update: Probably you also need to replace following line in gravityforms.php
if(in_array(RG_CURRENT_PAGE, array('post.php', 'page.php', 'page-new.php', 'post-new.php'))){ add_action('admin_footer', array('RGForms', 'add_mce_popup')); }
with
if(is_admin()){ add_action('admin_footer', array('RGForms', 'add_mce_popup')); }
otherwise GF will not add the required JS code to the footer.
Regards,
PeterHello markinanton!
You need to contact Envato: http://support.envato.com/
We (the support team and Kriesi) can’t issue refunds directly.Cheers!
PeterHi!
The form button does not work because following code in wp-content\plugins\gravityforms\gravityforms.php prevents the html code output
$is_post_edit_page = in_array(RG_CURRENT_PAGE, array('post.php', 'page.php', 'page-new.php', 'post-new.php')); if(!$is_post_edit_page) return;
(part of the add_form_button() function). You can delete this code and the button should pop up. I recommend to contact the plugin authors – maybe they can add a filter to the $is_post_edit_page variable which allows us to bypass the check if the editor displayed within the ajax modal window.
Cheers!
PeterHello Michael Oeser!
Yes, exactly. A standard license grants you the right to install the theme on one wordpress website. If you’ve 10 clients you need to buy 10 licenses.
Best regards,
PeterThis reply has been marked as private.Hello!
Please create us an admin account and we’ll look into it. Post the login credentials as private reply.
Regards,
PeterOctober 17, 2013 at 10:43 am in reply to: event espresso calendar not formatting correctly with enfold theme #176934Hi!
Please try to add following code into the quick css field to fix the calendar styling issue
#top a { max-width: none; }
Cheers!
PeterHello!
Please hire someone for the customization. I’d suggest http://www.microlancer.com/
The code here https://kriesi.at/support/topic/solution-making-the-iconbox-element-fully-linked/ is not very useful because
1) It’s w3c invalid. It’s not allowed to wrap an inline element like link (a href) tag around a div and
2) it would break the links inside the content because you can’t add a link to a link.This modification needs to be done properly (on the php code & styling level) and it doesn’t make sense to provide quick dirty hacks which do more harm than good.
Cheers!
PeterOctober 17, 2013 at 10:15 am in reply to: Warning: Invalid argument supplied for foreach() in … postslider on line 443 #176926Hi!
Please create us an admin account and we’ll look into it.
Best regards,
PeterHey!
Maybe you used the ” Siti internet Sassari | Siti web Sassari” page as portfolio grid page in the past? Then the wrong breadcrumb was caused by a technical limitation. WordPress doesn’t know which “portfolio grid” is the parent page of a “single portfolio entry” because the portfolio grid is actually just a shortcode which is embedded into the content. Kriesi found a workaround and Enfold stores the id of the portfolio/grid page into a session. If the session data exists the breadcrumb will show the portfolio grid link in the breadcrumb, otherwise not. So if the user first views the grid page the server will save the id into the session and as soon as the user views the single portfolio entry Enfold uses the session data to build the breadcrumb. On the other hand (if the user accesses the portfolio entry directly) it won’t save a session/id and the breadcrumb won’t show the portfolio grid page link.
I tested the portfolio page on your website and the breadcrumb seems to work for me now: http://www.screenr.com/iDtH . Maybe try to clear the browser cache and visit it again to get rid of the old session data.
If you want to show the portfolio grid page in the breadcrumb but just the portfolio categories of the current entry you can use the code I posted here https://kriesi.at/support/topic/breadcrumbs-with-portfolio/
Cheers!
PeterHey!
Open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles.php and delete following line
$tag_string = "{".__('All','avia_framework' )."} ";
Best regards,
PeterHey!
Yes, but I can’t find a styling flaw. I compared your screenshot to the demo website: http://kriesi.at/themes/enfold/shortcodes/iconbox/ and the icon + headline look exactly the same: http://www.clipular.com/c?6646374380601344=mu8r09_raVCaG1-4OZrMFZNPTRs&f=.png vs http://www.clipular.com/c?4773218883731456=GJQodPIf7EjxV-H6_IBrsx5qZzI&f=.png
Cheers!
PeterHi Michael Oeser!
Please update your theme to v2.3.2. We fixed a js error which could cause issues with tinymce plugins.
Best regards,
PeterHello!
Nothing else to do :) – I imported the dummy data and you can start to work with it.
Regards,
PeterHello PPCHound!
a) This is not an issue but a feature. The logo will resize if there’s not enough space for the menu and the menu links would overlap the logo. We’ll add a hook to deactivate this feature in the next version though. Then you can use following code in functions.php
add_filter('body_class','avia_remove_resize_function'); function avia_remove_resize_function($classes) { $classes[] = 'avia_deactivate_menu_resize'; return $classes; }
to deactivate te resize function.
2) Can you post a link please – I’d like to investigate the source code.
Best regards,
PeterHello simonac!
It’s not possible at the moment but I’ll suggest such a search filter to Kriesi.
Regards,
PeterHi!
In /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php replace both occurences of
$output .= '</header>';
with
$taxonomies = get_object_taxonomies(get_post_type($the_id)); $cats = ''; $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id); if(!empty($taxonomies)) { foreach($taxonomies as $taxonomy) { if(!in_array($taxonomy, $excluded_taxonomies)) { $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' '; } } } if(!empty($cats)) { $output .= '<span class="blog-categories minor-meta">'; $output .= $cats; $output .= '</span>'; } $output .= '</header>';
Best regards,
PeterHey!
For me it works now: http://www.screenr.com/NxtH – please try to clear the browser cache. If it still doesn’t work for you deactivate all plugins except Enfold, WooCommerce, BBPress and WordPress SEO and check if it starts to work. If yes another plugin conflicts with the theme and you need to activate them one by one to find the culprit.
Cheers!
PeterHey!
I imported the sql file on your server (with a plugin called adminer). Please make a backup of the database (i.e. with: http://wordpress.org/plugins/backupwordpress/ ) because the importer doesn’t seem to work on your server and if you want to revert to the default demo dat you just need to delete the entire data in the database and then you can restore it with the sql backup file.
Cheers!
PeterHello!
Please try to deactivate all plugins. Maybe a plugin causes a conflict with the theme code. If this doesn’t help try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Regards,
PeterHello Easy123!
1) Please see https://kriesi.at/support/topic/make-excerpt-shorter/#post-172121
2) You can change the blog layout on the option page (Enfold > General Settings > Blog Style). It will affect the blog page and archive pages. The search page and the author pages do not support the blog grid layout at the moment though.
3) The search page displays the “Displayed Everywhere” widgets. You can add a widget to this widget area to remove the dummy widgets on the search page too or (if you don’t want to add a widget to the “Displayed Everywhere” area open up sidebar.php and delete
if ($default_sidebar) { avia_dummy_widget(2); avia_dummy_widget(3); avia_dummy_widget(4); }
Regards,
PeterHey!
Yes but unfortunately I don’t have a native install of IE8. I tested it with IETester and IE10 developer console and both showed the images.
Cheers!
PeterHey primarythoughts!
You can use the “Section” element and the “Section ID” option field ( http://www.clipular.com/c?15355001=E5WI9n7gMEVrPtET9P9LVatQQuo&f=.png ) to create “one page” sites. Make sure each section has an unique id, then add custom links to your menu which point to the sections. You can use a hashtag (#) to link to a section.
I.e. Kriesi used the section ids here: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/ to create a one page portfolio. If you want to scroll to the section with the id “about-us” the link is: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/#about-us , if you want to scroll to the section “team” the link is: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/#team
Basically you take the page link http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/ and then you can append the section id with a hashtag (#team or #about-us, etc.). Note that the section id must not contain “special characters” and I recommend to avoid spaces too.
Regards,
PeterHello!
Maybe the server cached some data and didn’t process your request (menu editor data, etc.)? Glad it started to work now :)
Cheers!
Peter -
AuthorPosts