Forum Replies Created
-
AuthorPosts
-
Hey!
Right now this is not possible. I’ll tag it for Kriesi (feature request).
Regards,
Peter
This is probably a problem with the wpautop filter. A quick temp. solution would be to remove it. Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace
return "<div class='avia_textblock'>".wpautop( ShortcodeHelper::avia_remove_autop($content) )."</div>";
with
return "<div class='avia_textblock'>".ShortcodeHelper::avia_remove_autop($content)."</div>";
July 22, 2013 at 7:54 am in reply to: Phone number bwtween logo and social media icon sppace #120701Hi!
Try following code
@media only screen and (max-width: 767px) {
#header_meta {
min-height: 45px;
}
}Best regards,
Peter
Hi!
No, but you can try http://wordpress.org/plugins/woocommerce-menu-bar-cart/
To remove the default cart add following code at the bottom of functions.php
remove_action( 'ava_main_header', 'avia_woocommerce_cart_dropdown', 10);
Regards,
Peter
The width of the blog is limited to 600px. If you want to expand it use following css code
#top .fullsize .template-blog .post .entry-content > * {
max-width: 900px;
}
#top .fullsize .template-blog .post .entry-content {
max-width: 900px;
}Obviously you can use a different width value too :)
1) Probably not because the js script sends the data to wp which writes it into the database and if the script doesn’t run properly the data is lost.
2) You can try to deactivate all third party plugin and then activate them one by one to find the plugin which conflicts with LayerSlider.
July 22, 2013 at 6:46 am in reply to: "standard" google fonts not working on desktop computers? #128949I’d recommend to try it. 1.8.1 contains several improvements. We didn’t include a “fix” regarding this issue simply because we can’t reproduce it on our servers and no other user reported it so far. I even can’t reproduce it on your website: http://www.screenr.com/riWH
July 22, 2013 at 6:27 am in reply to: What loop does a page with a blog widget from the builder use? #130150The blog element code can be found in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesblog.php and it uses the standard post loop file includes/loop-index.php. You could rewrite it and include different templates based on the taxonomy attribute like
if($atts['taxonomy'] == 'mytaxonoy')
{
get_template_part( 'includes/loop', 'mytemplate' );
}else{
get_template_part( 'includes/loop', 'index' );
}It’s obviously no server problem but a device specific issue (ipad can’t process content). I can’t reproduce the problem with my Android 4.1 phone LG700. Try to deactivate all browser extensions, try to use another browser on the server and check if a certain element causes the issue (script which causes a memory leak, etc.). I’ll tag it for Kriesi – maybe he finds the cause on his ipad.
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)
Regards,
Peter
July 22, 2013 at 6:06 am in reply to: Woocommerce – hide top right cart icon unless logged in… #130683Hey!
Try to use !important tags like
.cart_dropdown.visible_cart {
display: none !important;
}
#top.logged-in .cart_dropdown.visible_cart {
right: -2px;
display: block !important;
}Regards,
Peter
Please try to wrap/add your content into a “Section” element. Kriesi uses a color section to display the content and this section adds some paddings/margins to it which will increase the content height.
You can try the “Post Slider” element. The latest update introduced an “offset” function which allows you to “skip” a certain number of posts when you query posts from a category. So if you want to build a grid with 3x? posts add several post slider elements to your layout, select “3 columns” and “3” – “Entry Number”. Then you need to configure the offset. The first slider element must have an offset of 0 (deactivate offset). The next slider must skip the first 3 posts so you need to set the offset to 3. The next slider must skip 6 posts because the first two sliders already show 6 posts of the category and so on.
July 22, 2013 at 5:28 am in reply to: I can not create any 3D transitions….( Enfold – Responsive Multi-Purpose Theme #130631I’ll tag this for Kriesi because I’m not sure if the file should be included or if the inclusion code is obsolete. For a quick fix open up wp-contentthemesenfoldconfig-layersliderLayerSliderbuilder.php and replace
if(file_exists($custom_trs)) {
$data = file_get_contents($custom_trs);
} else {
$data = file_get_contents($sample_trs);
}with
if(file_exists($custom_trs)) {
$data = @file_get_contents($custom_trs);
} else {
$data = @file_get_contents($sample_trs);
}1) Try to replace following line in functions-enfold.php
$args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'=>'menu_order, post_title');
with
$args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'=>'menu_order');
2) If this doesn’t help make sure you set a valid menu order value for all pages (“Pages Attributes” field on the page editor page). You can also try http://wordpress.org/plugins/post-types-order/
July 22, 2013 at 5:15 am in reply to: How do you shorten the length between the header and the content? #130605Hey!
Try following code instead:
.fixed_header #main {
padding-top: 60px;
}and don’t forget to clear the browser cache.
Regards,
Peter
July 22, 2013 at 5:03 am in reply to: Mobile issues: Easy Slider, Tabs and Acordions, Headlines #128471I think the issue is caused by some unclosed html elements. Please fix them: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.ferienwohnung24-garmisch.de%2F%23toggle-id-1&charset=%28detect+automatically%29&doctype=Inline&group=0
(you can ignore the other warnings/errors – they won’t affect the toggle script but “No p element in scope but a p end tag seen”, “Unclosed element span.” and “Stray end tag span.” requires a fix.
Hi!
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)
Best regards,
Peter
1) So if this is not possible, can the default woo single product page be used instead?
We use the default templates but we adjusted them a bit with hooks. You can remove the theme code by removing following line (located in functions.php):
require_once( 'config-woocommerce/config.php' ); //compatibility with woocommerce plugin
However probably this will break the woocommerce pages.
2) No I’m sorry because this requires a time intensive customization (you nedd to find the right hooks first, change the css code and container structure, etc.) and I can only recommend to hire a freelancer for the customization if you don’t like the default theme styling.
Hey!
You can insert it into the “standard editor”. Then save the post and switch to the “Advanced Layout Editor”.
Best regards,
Peter
Hi!
See https://kriesi.at/support/topic/advanced-layout-editor-dissappeared-please-help – probably this thread will help you.
Best regards,
Peter
Hey!
You can try a plugin like: http://wordpress.org/plugins/extended-categories-widget/ – it allows you to exclude certain categories from the list. The default wordpress widget does not support such a feature.
Best regards,
Peter
You can use this converter: http://hex2rgba.devoth.com/ to convert your hex colors to rgb. Just choose your favorite red, them enter the hex color into the text field and click on “Hex 2 RGBA”.
a) I can’t view the error screenshot (404 not found – please check the link).
c) You can change the “Home” link by creating/editing the custom menu (Appearance > Menus in the backend). Just rename the “Home” menu item.
Please use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translate the missing text strings. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select PT_BR from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).
Hi!
You can try a plugin like http://wordpress.org/plugins/advanced-recent-posts-widget/
Best regards,
Peter
Hi!
You could create this tag list manually and place custom links in the menu which point to the tag archive pages. However it’s not possible to generate it automatically.
Regards,
Peter
Hey!
Yes, the analysis tool won’t work with the template builder because the shortcode data is saved in a separate post meta field and this field is not supported by the Yoast SEO plugin. I’ll contact the plugin author – maybe we can find a solution.
Regards,
Peter
July 20, 2013 at 1:25 pm in reply to: portfolio roll over links not working after update to enfold 1.8 #130385Please 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)
The shortcode works on my test servers and I’m not sure why it does not work in your case…
July 20, 2013 at 11:28 am in reply to: Formatting conflict with http://www.myeventon.com/ plugin #130463Hey!
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 have a short look at it. It seems like the plugin generates the same event link 2 times and I’m not sure why…
Regards,
Peter
-
AuthorPosts