Forum Replies Created
-
AuthorPosts
-
February 22, 2014 at 10:54 am in reply to: WGM Mehrwertsteuer unterm Produkt verschwindet sofort wieder #227853
Hey!
Sehr gut :)
Best regards,
PeterFebruary 21, 2014 at 1:48 pm in reply to: Changing portfolio slug: difference of "portfolio-item" and "portfolio_entries"? #227464Hi!
See http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/
Cheers!
PeterHey!
Unfortunately you can’t add a parent page/post to posts. Posts do not support a hierarchy like pages (parent > child pages) but you can assign them to categories. By default the breadcrumb will display the right structure if the user accesses the portfolio entry from a portfolio page though because Kriesi stores the page id of the portfolio grid page into a session variable and if the user views a portfolio post Enfold checks which portfolio grid directed the user to the portfolio post. I.e. if you go to http://kriesi.at/themes/enfold/portfolio/ and then click on “Single Portfolio: 2/3 Slider” the breadcrumb will show: Home / Portfolio / Single Portfolio: 2/3 Slider – you can also set a parent page for the “Portfolio” page and Enfold will add it to the breadcrumb (i.e. the structure would look like Home / Portfolio Parent Page / Portfolio / Single Portfolio: 2/3 Slider).
If you want to set a specific page as portfolio “parent” for all portfolio posts insert this code into the functions.php file:
function avia_modify_breadcrumb($trail) { if(get_post_type() === "portfolio") { $page = 20; if($page) { if($page == $front) { $newtrail[0] = $trail[0]; $newtrail['trail_end'] = $trail['trail_end']; $trail = $newtrail; } else { $newtrail = avia_breadcrumbs_get_parents( $page, '' ); array_unshift($newtrail, $trail[0]); $newtrail['trail_end'] = $trail['trail_end']; $trail = $newtrail; } } } else if(get_post_type() === "post" && (is_category() || is_archive() || is_tag())) { $front = avia_get_option('frontpage'); $blog = avia_get_option('blogpage'); if($front && $blog) { $blog = '<a href="' . get_permalink( $blog ) . '" title="' . esc_attr( get_the_title( $blog ) ) . '">' . get_the_title( $blog ) . '</a>'; array_splice($trail, 1, 0, array($blog)); } } return $trail; }
and replace 20 with the page id of your portfolio grid page.
Regards,
PeterHi!
Versuche einmal folgenden CSS Code:
#top #wrap_all .social_bookmarks { height: 50px; } #top #wrap_all .social_bookmarks li, #top #wrap_all .social_bookmarks li a { width: 50px; line-height: 50px; min-height: 50px; font-size: 30px; } #wrap_all #header_main .social_bookmarks li a { border-radius: 50px; }
Best regards,
PeterFebruary 21, 2014 at 1:18 pm in reply to: After update the Sidebar on the Product and Category pages are gone. #227449Hi ifranl!
I’m not sure – please create us an admin account and post the login credentials as private reply. We’ll look into it.
Cheers!
PeterHi!
You can wrap the “Search” text into a span and hide it like:
$items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span style="display:none;">Search</span></a></li>';
Best regards,
PeterHey!
Das ist ein Screenshot und kein Link :)
Regards,
PeterHi!
If you want to load a custom shortcode file insert this code into the child theme functions.php:
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
and then create a “shortcodes” folder inside your child theme folder. Afterwards place your shortcode files (i.e. postslider.php) into the shortcodes folder.
Cheers!
PeterHi!
If you add a category link to the sidebar menu it will link to the archive page of this category (i.e. http://talsammen.dk/test-cm/portfolio_entries/kasserejser/ ) which shows all items of the selected category. It seems like you just added one item to the category at the moment but if two or more items are assigned to the category more items will be shown on this page: http://talsammen.dk/test-cm/portfolio_entries/kasserejser/ . If you want to link to the single entry: http://talsammen.dk/test-cm/portfolio-item/kasserejser-c300/ then don’t add a category link to the menu but use the “Portfolio Item” select box: http://www.clipular.com/c/5472010608050176.png?k=0QNm_T_8INHl2Ei4AJx6AEMRjUI to add one or more portfolio entry links to the menu.
Regards,
PeterHey!
Die Abstände kannst du mit folgenden Code anpassen:
#footer { padding-top: 10px; padding-bottom: 10px; }
Der erste Wert bestimmt den Abstand nach oben, der zweite Wert den Abstand nach unten.
Regards,
PeterHi!
Afaik Kriesi released a new update today which improves the video api on mobile devices. You can download it from http://themforest.net and I suggest to use ftp: https://vimeo.com/channels/aviathemes/67209750 to install the update.
Best regards,
PeterHi!
Füge den Banner einmal mit einem Text Widget in die Sidebar ein. Wir können diesen dann mit CSS Code neu platzieren.
Cheers!
PeterHey!
I reported the issue to Kriesi. If you need a temporary quick fix try the code I posted here: https://kriesi.at/support/topic/linking-to-anchor-menue-covering/#post-214325
Cheers!
PeterHi!
You can use a gallery element and this plugin: http://wordpress.org/plugins/wp-gallery-custom-links/ to apply a custom link to gallery images. https://kriesi.at/support/topic/adding-links-to-a-gallery/
Cheers!
PeterHey!
Bitte poste einen Link zu den “Ringen”.
Cheers!
PeterHi!
I think I managed to solve the issue. The problem is that the widgets will only show the categories of the current selected language. To configure the widgets for both languages go to Appearance > Widgets and select “English”. Then select the “Profiles” category from the first portfolio widget select box and save the widget settings. Then switch to “Danish”, scroll down to to second widget (where you ticked the “Danish” checkbox) and select “Profiler” from the select box. Then save the settings of this widget and now all widgets are configured properly.
Cheers!
PeterHey!
Der äußere Ring wird vermutlich durch ein border-radius Attribut erzeugt. Versuche einmal folgenden Code:
#top .social_bookmarks li a { border-radius: 30px; }
in das Quick CSS Feld einzugeben und ändere den px Wert nach Belieben. Falls der Code nicht funktioniert probiere:
#top .social_bookmarks li { border-radius: 30px; }
und ändere den px Wert nach Belieben.
Regards,
PeterHi!
I reported the issue to Kriesi. If you need a temporary quick fix try the code I posted here: https://kriesi.at/support/topic/linking-to-anchor-menue-covering/#post-214325
Cheers!
PeterHi!
Das “Facebook Like Thumbnail” Plugin zerstört das Seiten-Layout. Ich habe es deaktiviert und nun geht die Masonry-Sektion.
Best regards,
PeterHi Michael!
Afaik this is not possible without some slider code customization. I’ll tag this thread for Kriesi (feature request).
Cheers!
PeterHi NeilMaxwell!
Please try to remove the css code and insert this code at the bottom of functions.php:
add_filter('body_class','avia_remove_resize_function'); function avia_remove_resize_function($classes) { $classes[] = 'avia_deactivate_menu_resize'; return $classes; }
– it should deactivate the resize effect without additional css code.
Best regards,
PeterHey!
Please try this code instead:
.avia-tooltip { margin-top: 160px; }
Regards,
PeterHi!
I recommend to ask the WPML support team for performance hints. They know the plugin code better than we do and maybe you can tweak the configuration somehow to improve the performance. If this doesn’t help I recommend to try another hoster.
Regards,
PeterHey taylor_smith!
Author and Contributor are not able to use the magic wand icon my default. Only Editors and Administrators can use the shortcode generator. If you want to change this open up wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/tiny-button.class.php and replace:
if ( current_user_can('edit_posts') && current_user_can('edit_pages') && self::$count == 0)
with
if ( current_user_can('edit_posts') && self::$count == 0)
Regards,
PeterHi!
I still see the compressed files at the top of the page. If you check the source code you’ll see that your website doesn’t load the uncompressed theme scripts but the compressed version: http://www.copenhagenfilmcompany.dk/2014/wp-content/cache/minify/000000/hYxBCoAwDAQ_ZIwVP1TaIJEklKZF_L2CIHryOOzszFNYcC_AlqRnctwclTJHElKy9gGIlqFIPKiOyjbMf-dre_MQ0LlRqeQO2qWxsK09CiR1rHfgMU4.js
Please deactivate W3TC completely for now.
Best regards,
PeterHi!
Please try to insert following css code into the quick css field:
.js_active .tab_content { top: 19px; }
Regards,
PeterHey koballo!
Please update Enfold to version 2.5.2. It’s compatible with WP3.8 and it will fix the issue.
Best regards,
PeterHi fortuneRice!
Please use the “quick css” option field (Enfold > Theme Options > Styling) for your “language specific” styles. Enfold generates a separate dynamic stylesheet for each language and your Quick CSS Code can be different for each language.
Best regards,
PeterHey!
If you want to change the single.php layout use a special single.php template for each cpt. You just need to append the cpt slug to the template name. I.e. the portfolio post type template name is: single-portfolio.php. Based on the code you posted in your first post you must name the cpt template single-report.php. Inside the single-report.php template call the loop template with
get_template_part( 'includes/loop', 'report' );
Best regards,
PeterHey!
Eine gute Lösung habe ich leider auch nicht parat. Ihr könnt versuchen den Plugin Autor von WooCommerce DE um Rat zu fragen. Eine schlechte (und nicht nachhaltige) Lösung wäre das Wort im wp-content/plugins/woocommerce/templates/cart/mini-cart.php Template direkt zu ersetzen und dort “Checkout” gegen eure deutsche Übersetzung zu tauschen. Problem ist aber, dass jedes Update diese Änderung überschreiben wird.
Best regards,
Peter -
AuthorPosts