Forum Replies Created
-
AuthorPosts
-
Hi!
I didn’t test this solution but it’s the only easy one (which does not require php/js code customization). Try to insert this code into the quick css field:
#top .aviaccordion-preview .aviaccordion-excerpt{ display: none; } #top .aviaccordion-preview:hover .aviaccordion-excerpt{ display: block; }
If it doesn’t work you probably need to change the accordion slider code to fade in/out the excerpt content based on the toggle state. I recommend to hire a freelancer (i.e. here: http://studio.envato.com/ ) for this job or you can suggest this feature here: https://kriesi.at/support/enfold-feature-requests/ and we’ll look into it if more users request it.
Regards,
PeterHey!
Tbh if you want to add 400 different contact forms I recommend to use Formidable or Gravity Forms because these plugins save all contact forms and submission entries in a database table and you just need to embed the contact form with a shortcode.
I could reproduce the issue with Yummy and I reported it as a bug to Kriesi.
Cheers!
PeterJune 25, 2014 at 7:19 am in reply to: Problem mit Masonry – Portfolioeinträge öffnet es nicht in der Lightbox #283427Hey CiniZ!
Bitte erstellen Sie mir einen Admin Account, damit ich mir die Konfiguration ansehen kann. Damit die anderen Benützer die Login-Daten nicht sehen können verwenden Sie bitte die ” Set author’s post as private.” option.
Cheers!
Peter-
This reply was modified 11 years, 1 month ago by
Dude.
Hey!
Please try to insert this code into the quick css field:
#top #mobile-advanced .avia_mega_div.visible_sublist ul { display: block; }
Cheers!
PeterHi pinnygirls!
The breadcrumb already reflects the url structure. “aprons” is the parent category of “All in flavour apron” and that’s why the breadrumb displays it before “All in flavour apron” (Shop / Aprons / All in flavour apron) and the permalink also contains the “apron” slug (/shop/aprons/all-in-flavour-apron/). If you want to change the product-category slug go to Settings > Permalinks and change the “Product category base” slug/value. Not that you can’t completely remove the category base and get a category archive permalink like /shop/aprons/ instead of /product-category/aprons/ but you can use a shorter slug like /product-cats/aprons/. This is not a theme but wordpress/woocommerce limitation.
Best regards,
PeterHi absurdity69!
No, I don’t think it’s a theme issue. I deactivated all plugins except bbpress and switched to the default TwentyThirteen wordpress theme and the topic still didn’t show up in the forum page. It would also surprise me if this is a theme conflict because we just use custom css code for bbpress and we don’t modify any loops or queries.
Regards,
PeterHi!
Please create us an admin and ftp account and post the login credentials as private reply.
Regards,
PeterJune 24, 2014 at 6:54 pm in reply to: Empty search box producing 403 forbidden-possible plugin conflict #283187Hey TheMediaman!
I don’t think this is related to the theme code but we use a function to redirect the user to the search page if the search query is empty. To deactivate this function comment out this line in wp-content/themes/enfold/includes/helper-template-logic.php:
add_filter('pre_get_posts', 'avia_search_query_filter');
or insert:
add_action('after_setup_theme','avia_remove_search_redirect'); function avia_remove_search_redirect(){ remove_filter('pre_get_posts', 'avia_search_query_filter'); }
into the child theme functions.php.
Regards,
PeterHi!
You can stick with the parent theme for now and then switch to the child theme after the conference. However the change should work flawlessly in most cases.
Best regards,
PeterHey!
Do you upload the functions.php file into the child theme folder (wp-content/themes/enfold-child/)?
Cheers!
PeterHey!
I can’t reproduce the issue on my test server. Please make sure that
1) no plugin interferes with your links
2) no custom code or child theme breaks Enfold.
If it still doesn’t work create us an admin account and we’ll check the configuration.
Cheers!
PeterHey simonac!
Please activate the default theme and check if the shipping costs show up. I’m not aware of any incompatibility issue and it’s probably a plugin bug.
Cheers!
PeterHey!
Maybe Enfold can’t regenerate the dynamic stylesheet. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file inside the dynamic_avia folder. Afterwards go to Enfold > Theme Options to regenerate the dynamic stylesheets (hit the green “Save all changes” button).
Cheers!
PeterHey!
You can try to change the folder permission to 777 – maybe 755 is not enough in your case. We have no list of minimum requirements because it depends on the wordpress plugins, etc. you want to use but we recommend php5.4, 30 seconds (or more) php execution time and 128 megabyte allocated php memory. PHP5.5 should also work but because some plugins are still not compatible with the latest php version 5.4 is probably the better choice.
Best regards,
PeterHi!
Just select “What should happen once the form gets sent?” – “Redirect the user to another page”: https://www.clipular.com/c/5357368921554944.png?k=YCbbCR5YTBuA0KM7JT1y4FXY29w and enter the url of the page (Set manually) or select “Page” from the dropdown. Then insert the conversion tracking code with a “Code block” element on the “Thank you” page. You can set a different page for each contact form.
Regards,
PeterHi!
Please try to add this code into the quick css field:
.avia-msie-9 #top #wrap_all .main_menu ul:first-child > li > a{ min-height: 116px; line-height: 116px; }
Cheers!
PeterJune 24, 2014 at 6:06 pm in reply to: Deactivate Avia Framework on a page, when using Visual Composer #283162Hey!
We’ll see – if more users request this feature we might look into it. Tbh I think Enfold doesn’t make much sense without the template builder and a simple theme framework like Genesis also does the job if you use it with VC or another page builder. On the other hand it requires quite a lot of work to strip or outsource the template builder functions from the theme templates and we could use this time to work on more popular features requests.
Regards,
PeterHi Butterfly44!
Can you post a link to the hr page please? A negative height value can’t be used but you can apply a custom css class to the element ( http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and the set a negative margin-top.
Regards,
PeterHey kroemer08!
It seems like WooCommerce doesn’t detect the shop page as selected page. Please try to insert this code into the enfold/functions.php file or the child theme functions.php file:
function add_custom_classes($classes, $item) { if(is_shop() && $item->ID == 3169) $classes[] = 'current-menu-item'; return $classes; } add_filter('nav_menu_css_class' , 'add_custom_classes' , 10 , 2);
Regards,
PeterHey mnmatt!
You can try to use the avf_logo_final_output filter instead – it enables you to add the image directly before or after the logo container. Use the filter like:
function av_change_logo($logo, $use_image, $headline_type, $sub, $alt, $link){ $logo .= "<div class='custom_content'><img src="http://monitash.com/wp-content/uploads/OrganizingAngel2.png"></div>"; return $logo; } add_filter('avf_logo_final_output', 'av_change_logo', 100, 6);
Cheers!
PeterHi!
No, the template just inserts the shortcode data one time into the page/portfolio entry and will not update it if you update the template.
Regards,
PeterHey!
Please create us an admin account and post the login credentials as private reply – I’ll check the configuration.
Cheers!
PeterJune 24, 2014 at 7:40 am in reply to: How Can I Get The Event Page To Show On The Title Header? #282840Hi!
Probably the easiest solution would be to add the website.com/events link to the main menu. Go to Appearance > Menus and on the left side use the “Links” field: http://www.clipular.com/c/5846993851121664.png?k=Uh6Kxq-JNVR6h3gPFC1n7MTY950 to add the “Events” menu item to the main menu.
Cheers!
PeterHi!
The menu order does not affect the page order. If you want to change the page order you can install this plugin: https://wordpress.org/plugins/post-types-order/
Another possible solution would be to add a “Custom Menu” widget into the first footer column/widget area and to select the main menu for the menu widget.
Regards,
PeterHi gmarco!
As far as I know Enfold doesn’t set (or require) any special cookie on the theme option page. I checked all cookies with “EditThisCookie” and on my test server following cookies are used: “_icl_current_admin_language”, “_icl_current_language”, “wordpress_XXX”, “wordpress_logged_in_XXX”, “wp-settings-1”, “wp-settings-time-1”. The first two cookies are set by WPML and not by the theme, the other four cookies are set by wordpress (authentication cookies and editor page settings cookies).
Best regards,
PeterHi!
Tbh I never used a reset button and I never searched for a contact form which comes with this feature. You can try this plugin http://wordpress.org/plugins/contact-form-7/ and follow the tips here: http://wordpress.org/support/topic/plugin-contact-form-7-how-to-add-a-reset-button?replies=5 or here: http://digitalrainmakers.com/wordpress-tutorials/useful-tips-for-contact-form-7/
Regards,
PeterHi Evgeny!
Please try if the default embeds sgortcode works ( http://codex.wordpress.org/Embeds ) – insert i.e.:
[embed] http://www.youtube.com/watch?v=dQw4w9WgXcQ [/embed]
into the text editor and check if the video shows up. If not (and wordpress just shows the link) your server does not retrieve the oembed data and you must contact the server administrator and ask him to check the configuration (sockets, etc.)
Cheers!
PeterHey jazbird!
Tbh I’ve not seen this before. I recommend to deactivate all plugins (maybe a plugin adds the white bar to the footer) and if this doesn’t help try to revert the code modifications.
Regards,
PeterJune 23, 2014 at 9:16 am in reply to: Query: how to enter privacy policy and terms&conditions within Socket #282319Hi!
You can wrap it into a div and apply a style to this div like:
<div style="text-align: right; float: right">My text</div>
and replace My text with your links.
Best regards,
PeterJune 23, 2014 at 9:09 am in reply to: Is there a way to add a chinese character to a main menu? #282314Hi!
Afaik you can add images to the main menu. Just go to Appearance > Menus and add a link ( http://www.clipular.com/c/6244188735668224.png?k=P7IBeHieRbIEDBpXMM8xODEVLiA ) to the menu. In the “URL” field insert the link url and into the “link text” field insert the image code like:
<img src="http://kriesi.at/wp-content/themes/kriesi/images/logo.png" width="16" height="18" title="Home" alt="Home">
Replace http://kriesi.at/wp-content/themes/kriesi/images/logo.png with your image url and change the height/width and title/alt attribute values.
Regards,
Peter -
This reply was modified 11 years, 1 month ago by
-
AuthorPosts