Forum Replies Created
-
AuthorPosts
-
Hey!
Try following css code to add a bottom border to the table.
.pricing-table {
border-bottom: 1px solid;
}Best regards,
Peter
Hi!
It seems like you’re using a “short” hr on this page – you can use following code to reduce the margin
.hr-short {
margin: 10px 0;
}Regards,
Peter
The quick css field can be found on the theme options page (Enfold > Styling).
The custom.css file is located in the enfold/css folder but WordPress won’t show it on the theme editor page. You can use ftp to download the file (navigate to wp-content/themes/enfold/css) or install an advanced editor plugin like: http://wordpress.org/plugins/solid-code-theme-editor/
Hey!
Thanks meanster99 for helping us out :)
Regards,
Peter
If you’ve general questions how to configure the theme options or how to set up a certain element we’ll gladly help you (for free) in the support forum. If you need help with the theme customization, server configuration (database transfer, ftp setup, etc.), etc. which is beyond the scope of our support forum you can try a service like: https://codeable.io/ or you can contact us here: http://inoplugs.com/contact/ and we’ll make you a quote.
You can use the avia_frontend_search_form hook to add your custom form fields (eg with a child theme function, etc.) without modifying the searchform.php file itself. I.e. use the hook to call a function like:
if(!function_exists('add_custom_avia_search_fields'))
{
add_action('avia_frontend_search_form', 'add_custom_avia_search_fields');
function add_custom_avia_search_fields()
{
echo '<input type="hidden" id="post_type" name="post_type" value="my_post_type" />';
}
}– this function would add a hidden field to the search form which limits the search to the “my_post_type” post type.
You can obviously build more complex forms (checkboxes, maybe with conditional logic and javascript code, etc.) but that’s beyond our support service and depending on your skills I’d suggest to hire a freelancer who can help you to build the form.
Enfold doesn’t support this feature out of the box and you can add it to the wishlist. WP-Backgrounds Lite should work with Enfold because I tested it. However you must use the “Boxed Layout” otherwise you won’t see the background image. I used following settings for WP-Backgrounds Lite:
You can select the background image on the post/page editor page:
July 18, 2013 at 7:57 am in reply to: Can Enfold be customized to look like JoveniaJuveler.se? #130161“Using theme forest themes always result in updates ruining optimizations. Its best not to use a themeforest.net theme if
you are changing the interface. If you do any update will overwrite the styling applied.” – imo that’s not true because even if you create a custom theme you maybe need to update/hack the theme when a WordPress/browser, etc. update breaks your code. This can happen with all themes and it’s not just a problem of themeforest.net themes. Maybe the developer wanted to say that some themeforest authors do not support their themes anymore after 3,6,12,etc. months and tbh he’s right – some authors just drop the support if the theme doesn’t sell anymore. However Enfold is the most popular Kriesi theme and we are not interested in loosing the customers by dropping the support. In addition you have the same problem with all other themes – if your developer doesn’t work for you anymore you also need to hire someone to update the custom theme for you…
Can you rebuild JOVENIAJUVELER.SE with Enfold? I don’t think this is feasible because you’d need to use many html5/css3 techniques and then you’ll have the problem of “downwards compatibility” with older browsers. In addition the animations of html5/jQuery are imo not as good as flash animations. If you want a new website you can use Enfold – however imo a 1:1 copy of the flash website doesn’t make much sense and you’ll just burn money…
Hey!
Thanks. The next update (Enfold 1.8) will add an custom marker option and I also created an address search option which fetches the coordinates automatically :)
Regards,
Peter
1) Single product pages have a sidebar – you just need to drag’n’drop widgets into the “Single Product Pages” widget area. Afaik the “Displayed Everywhere” widget area is also supported on single product pages.
2) There seem to be sidebars for everything else except single pages. My question then become why?
First (standard) single pages support sidebars and even product pages have a sidebar but it’s not located on the right. We choose this layout because the design wouldn’t look good with a separate sidebar area. The product thumbnails are displayed on the left side and take one third of the page width. The space on the right is required for the product description, add to cart button, etc. Thus the only reasonable location for the widget areas is below the product thumbnails on the left side.
Hey!
Please read: https://kriesi.at/support/topic/advanced-layout-editor-dissappeared-please-help
Best regards,
Peter
Sure – add following code to the bottom of functions.php
function avia_add_images_to_rss_feed($content)
{
global $post;
if ( has_post_thumbnail( $post->ID ) )
{
$content = get_the_post_thumbnail( $post->ID, 'full', array( 'style' => 'display: block;' ) ) . '<br/>' . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'avia_add_images_to_rss_feed');
add_filter('the_content_feed', 'avia_add_images_to_rss_feed');No, afaik there’s no function which uses the “comment_post” hook. I searched all theme files for “triggered” or “comment_post” but I couldn’t find any results which indicate that Kriesi calls or triggers a custom function by using the comment_post action. Did you try another service? A list of popular services can be found here: http://www.kevinmuldoon.com/feedburner-alternatives/
Hey!
I forwarded the login data.
Best regards,
Peter
Hi!
Maybe it’s not possible to use a column shortcode within a toggle shortcode because the floating columns will break the toggle container. However you can try following code:
.toggle_content{
display: inline-block;
}Best regards,
Peter
1) Can you post a link to the homepage please?
2) You can use the excerpt field
to enter a manual excerpt. If some words are bold in the generated excerpt it’s probably a problem of missing closing strong tags in the excerpt text. We’ll fix this problem in the next update, for now open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php and replace
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true);
with
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate(strip_tags($entry->post_content,''), apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true);
July 18, 2013 at 6:19 am in reply to: Layerslider not working, white screen of death, can't fix #130182Typically this is related to a memory issue on your wordpress install. Try upping your php memory limit to 128mb or above using one or all of the steps here: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Hi!
Great – maybe this thread will help you too: https://kriesi.at/support/topic/warning-message-2
Best regards,
Peter
July 18, 2013 at 5:45 am in reply to: How to create vertical ruler on advance layout editor Page! #129609Hi!
Yes, I’d recommend to insert it into the quick css field.
Regards,
Peter
You can reduce the menu height with following code
#header_main .container, .main_menu ul:first-child > li a {
height: 80px;
line-height: 80px;
}Insert it into the quick css field and increase/decrease the px value. If you decrease the value the white space will become smaller.
Hi!
Bitte richte mir einen Admin Account ein und sende die Daten zu: (Email address hidden if logged out) – ich sehe mir das Problem an.
Regards,
Peter
Hi!
Glad it works now :)
Best regards,
Peter
No, but you can read http://wpml.org/documentation/translating-your-contents/ – it will explain all WPML features/options.
Just one configuration step which is “theme related” – you need to configure the theme options for each language – i.e. you can set a different logo, different colors, different copyright text, etc for each language. Just select the current language from the language dropdown in the admin panel; the theme name will change – eg to Enfold (DE) if you select German – then you can configure & save the options for the German website. Then select another language and configure the options for this language, etc.
Hey!
Please create me a wordpress admin account and send me the login data and more details about the issue to: (Email address hidden if logged out) – I’ll look into it.
Regards,
Peter
Please try following fix – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesslideshow.php and replace
if(trim($content) != "") $content = "<div class='avia-caption-content'>".wpautop(ShortcodeHelper::avia_remove_autop(trim($content)))."</div>";
with
if(!is_string($content)) $content = (string)$content;
if(trim($content) != "") $content = "<div class='avia-caption-content'>".wpautop(ShortcodeHelper::avia_remove_autop(trim($content)))."</div>";Hey!
Not sure – I sent him a mail. Thank you for the hint :)
Regards,
Peter
Tbh we did not test this plugin with Enfold. Enfold uses the “Avia Layout Builder” which (probably) works similar to the “Visual Composer” plugin and I guess you don’t need to use a separate third party plugin to create page layouts. However you can try to install & use the Visual Composer and the chances high that it will work just fine.
1) I’d recommend to use: WPML. Enfold supports this plugin and we’re collaborating with the WPML devs (we can work with them if we find bugs, etc.). Other translation plugins (like qtranslate, etc.) are not supported.
2) I’d recommend a text widget – you just need to insert the contact form shortcode into the text field and then save the widget. You can generate the contact form shortcode by using the “Magic Wand” icon on the post editor page. Then copy/paste the code into the text widget field.
I could reproduce the issue and we’ll fix it with the next update. For now open up wp-contentthemesenfoldincludeshelper-template-logic.php and replace:
function avia_search_query_filter($query)
{with
function avia_search_query_filter($query)
{
if(is_admin()) return;Hi!
Can you post a link to your slider page please? Maybe it’s a js error.
Regards,
Peter
-
AuthorPosts