Forum Replies Created

Viewing 30 posts - 2,131 through 2,160 (of 9,352 total)
  • Author
    Posts
  • in reply to: woocommerce shop page: %date% | site name , page title #312388

    Hey!

    I checked the “Shop Overview” widget area and all widgets seem to work on the shop page. The “Product Category” widget is displayed on the very top ( http://blog.swiss-paracord.ch/shop/ ), below it the “price filter” and the “search products” widget show up and work properly. Did you solve the problem?

    Regards,
    Peter

    in reply to: Questions about Search function and IE8 #312382

    Hi!

    1) If you just want to display the word “search” in the search field and not the last search term open up wp-content/themes/enfold/searchform.php and replace:

    
    <input type="text" id="s" name="<?php echo $search_params['search_id']; ?>" value="<?php if(!empty($_GET['s'])) echo get_search_query(); ?>" placeholder='<?php echo $search_params['placeholder']; ?>' />
    
    

    with

    
    <input type="text" id="s" name="<?php echo $search_params['search_id']; ?>" value="<?php echo $search_params['placeholder']; ?>" placeholder='<?php echo $search_params['placeholder']; ?>' />
    
    

    You can also place the modified searchform.php into your child folder.

    2) Kriesi uses a filter to redirect the user to a 404 not found error page if the search query is empty. You can remove it by adding this code to the enfold/functions.php or child theme functions.php file:

    
    add_action('after_setup_theme','avia_remove_search_redirect');
    function avia_remove_search_redirect(){
    remove_filter('pre_get_posts', 'avia_search_query_filter');
    }
    

    Best regards,
    Peter

    in reply to: frontpage problems with yoast seo plugin #312367

    Hi!

    Great, we’re in contact with Yoast to solve the issue.

    Best regards,
    Peter

    in reply to: Pages keep loading! Not possible to work on clients website #311961

    Hey!

    You’re using an old version of WPML (v3.1.4). It’s not compatible with WordPress 3.9.2 and you must update to WPML v3.1.7.

    Cheers!
    Peter

    in reply to: Portfolio items permalink / WPML #311959

    Hi Garou!

    Yes you can translate the portfolio slugs with WPML – please read this article: http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/

    Cheers!
    Peter

    in reply to: Enfold / wpml #311958

    Hi marienoisette!

    1) Enfold does not come with “special” WPML options because they’re simply not necessary. As soon as WPML is activated Enfold will create a separate (independent) option set for each WPML language. You can i.e. choose a different logo, color scheme, homepage, blog page, etc. for each language. The option page will display the language shortcut next to the theme name (i.e. Enfold (EN), Enfold (FR), Enfold (DE)) and you can use the language switcher in the admin bar to switch between the language option sets. The Quick CSS field is fully compatible with WPML – the only disadvantage is that you need to switch to all languages to save the quick css changes. So if you want to use your styling for ALL languages it’s better to add the css code to the child theme style.css file. On the other hand the Quick CSS field enables you to use some style code with certain languages only.

    2) We have no documentation for WPML. There’s just one entry: http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/ regarding the portfolio slug setup. You can find the official WPML documentation here: http://wpml.org/documentation/

    3) The Avia Builder is fully compatible with WPML. I recommend to duplicate the layout you want to translate. I.e. if you want to duplicate the English page/post tick the “duplicate” checkbox and click the duplicate button: http://www.clipular.com/c/6119929287802880.png?k=loBt_iScpDt0C3ouj7fQWSBncOw . Afterwards go to the duplicated “translation” of the page and click the “Translate Independently” button: http://www.clipular.com/c/6352167833174016.png?k=UZaLhUaust52mHmU_TkKpZ8RQnY . Then translate the template like a standard page (click on the elements to edit them, etc.)

    Regards,
    Peter

    in reply to: Adding WooCommerce Buttons #311954

    Hey bakbek!

    You can use this shortcode:

    
    [add_to_cart id="99"]
    

    and replace 99 with the product id.

    You can’t use the shortcode with the Enfold button shortcode but the style of the button should be similar to the button shortcode style (like the add to cart button on the demo page: http://kriesi.at/themes/enfold/product/zoku-trioquick-pop-maker/ ).

    Cheers!
    Peter

    in reply to: frontpage problems with yoast seo plugin #311953

    Hey!

    I could fix it on your website with this code – I added it to the functions.php file:

    
    add_action('init','avia_remove_yoast_filter');
    function avia_remove_yoast_filter()
    {
        remove_filter('wpseo_pre_analysis_post_content','avia_wpseo_pre_analysis_post_content_fix', 10, 1);
        remove_filter('wpseo_video_index_content','avia_wpseo_video_content_fix', 10, 2);
    }
    

    Best regards,
    Peter

    in reply to: The events calendar plugin question #311943

    Hey!

    1) You can try this code but I’m not sure if it works with the “events” post type. Insert it into the enfold/functions.php or child theme functions.php file (at the very bottom)

    
      function category_specific_post_nav($settings)
      {
          $settings['same_category'] = true;  
          return $settings;
      }
    
      add_filter('avia_post_nav_settings','category_specific_post_nav', 10);
    

    We use the standard wordpress functions: http://codex.wordpress.org/Function_Reference/next_post_link and http://codex.wordpress.org/Function_Reference/previous_post_link and basically the code will make sure that the $in_same_term function parameter is set to true. I’m not sure though if the Events plugin supports it or if the plugin manipulates the next/prev urls somehow.

    2) This link is not generated by our theme. If you want to change the link url or text please contact the plugin author because we can’t answer questions regarding the usage or customization of third party plugins.

    Regards,
    Peter

    in reply to: Avia Layout Builder Beiträge/Posts #311942

    Hi!

    Ja, dies würde durchaus Sinn machen. Ich werde den Thread für Kriesi markieren – vielleicht kann man da mit zukünftigen Updates etwas machen. Derzeit kann man bei Posts nur den “Zauberstab” nützen, um die Galerien zu erstellen. Wenn es nur um die Galerie-IDs geht, lässt sich das Problem aber mit: https://wordpress.org/plugins/codepress-admin-columns/ beheben, welches euch ermöglicht die IDs der Bilder in der Medienübersichtsseite anzuzeigen. Diese kann man dann nützen, um die ID Liste im Shortcode ( 3028,3029,3027,3026,2885,2884,2883,2882,2881 ) gleich direkt zu bearbeiten. Alternativ könnte man auch auf: https://wordpress.org/plugins/nextcellent-gallery-nextgen-legacy/ zurückgreifen, um die Galerien komfortabel im Backend zu erstellen.

    Regards,
    Peter

    in reply to: Issue with woocommerce (image, products, etc won't load) #311929

    Hey merdekastudio!

    Please elaborate on this issue. I checked the homepage: http://www.merdekastudio.com/ – screenshot: http://www.clipular.com/c/4767711976488960.png?k=bezKqee26DBr-DuMGRWRQSXRUhc , product pages ( http://merdekastudio.com/product/paket-logo-premium-class/ ) and category pages ( http://merdekastudio.com/product-category/paket-logo/ ) and I couldn’t find any design issues or errors.

    Regards,
    Peter

    in reply to: Icons Rendering as Foreign characters? #311921

    Hey!

    Please remove the # signs and try this code instead:

    
    <FilesMatch "\.(ttf|otf|eot|woff)$">
      <IfModule mod_headers.c>
        Header set Access-Control-Allow-Origin "*"
      </IfModule>
    </FilesMatch>
    

    Regards,
    Peter

    in reply to: Social Boxes Overalapping #311920

    Hey!

    Please try to insert this code into the quick css field and check if it solves the styling flaw:

    
    iframe, object, embed {
    max-width: 100% !important;
    }
    

    Best regards,
    Peter

    Hey!

    No, I checked the screenshot: http://i.imgur.com/5OhWZnO.png and you must replace:

    
    .your-custom-class
    

    with:

    
    your-custom-class
    

    The custom class field does not require the class selector ( . ) because it just supports classes and no other selector like element ids, etc.

    Regards,
    Peter

    in reply to: Tag / Category / Author Page Navigation Messed Up #311910

    Hey Jason!

    Please go to your admin panel/page, click on Settings > Reading and search for the “Blog pages show at most” option. Probably the number 1 is the current option value. Change it to any other positive value, i.e. 10 if you want to show 10 posts on a category/tag, etc. archive page.

    Regards,
    Peter

    in reply to: Phone Number BELOW sub menu #311906

    Hi Justin!

    You can try to use the position:absolute css atribute to position the phone number below the sub menu. Add this code to the quick css field:

    
    #top #wrap_all #header_meta .phone-info {
    position: absolute;
    right: 35px;
    top: 37px;
    }
    

    and change the top and right value if necessary.

    Regards,
    Peter

    in reply to: Audio File Problems #311905

    Hey!

    Maybe your server blocks certain ips? I tested your shortcode:

    
    [audio src="http://27.121.64.167/~zpupqctj/wp-content/uploads/2014/07/MomentumEnergy_SmallBusinessAward_11May2014_1138.mp3"]
    

    on my test server ( http://test.inoplugs.com/impressum/ ) and the audio file played just fine.

    You can try to deactivate all third party extensions except WooCommerce and bbpress – maybe a wordpress plugin conflicts with the default wordpress audio player.

    Best regards,
    Peter

    Hi!

    No, as far as I know everything is based on their support ticket system provided by zendesk. There’s no “call center” or something similar.

    Cheers!
    Peter

    in reply to: woocommerce shop page: %date% | site name , page title #311487

    Hey!

    You must deactivate the “WooCommerce – All in One SEO Pack” first, then deactivate the “All In One SEO Pack” plugin.

    Regards,
    Peter

    in reply to: Small Slider Homepage #311481

    Hey Alexa!

    Kriesi used this code for the demo page:

    
    [av_heading heading='Hey there! We are Enfold and we make really beautiful and amazing stuff. This can be used to describe what you do, how you do it, & who you do it for.' tag='h3' color='' style='blockquote classic-quote' padding='0']
    
    [av_slideshow size='entry_without_sidebar' animation='fade' autoplay='true' interval='7']
    [av_slide id='1384' title='Welcome!' link='' link_target='']
    This is Enfold, the most flexible theme we have ever made!
    [/av_slide]
    [av_slide id='1442' title='Smart Business Team at your Service' link='' link_target='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.
    
    [/av_slide]
    [av_slide id='1444' title='Handshake Quality' link='' link_target='']
    Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubiliusce id purus. Ut varius tincidunt libero. Phasellus dolor. Maecenas vestibulum mollis
    [/av_slide]
    [/av_slideshow]
    
    [av_hr class='invisible' height='30' position='center']
    
    [av_one_fourth first]
    [av_icon_box icon='59' position='left' title='Free Support']
    Aenean commodo ligula eget dolor. Lorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Cum sociis natoque<strong> </strong>Aenean massa.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_one_fourth]
    [av_icon_box icon='2' position='left' title='Mobile Ready']
    Cum sociis <strong>natoque</strong>. Aenean commodo ligula eget dolor. Aenean massa. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_one_fourth]
    [av_icon_box icon='125' position='left' title='Updates']
    Cum sociis natoque <strong>sadfsadfas </strong>Aenean commodo ligula eget dolor. Aenean massa. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_one_fourth]
    [av_icon_box icon='36' position='left' title='SEO Optimized']
    Aenean commodo ligula eget dolor. <strong>Aenean massa</strong>. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    [/av_one_fourth]
    
    [av_section color='alternate_color' custom_bg='' src='' position='top left' repeat='no-repeat' attach='scroll' padding='small' shadow='no-shadow']
    [av_promobox button='yes' label='Learn More' link='page,750' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='large' icon_select='no' icon='25']
    Enfold is freakishly powerful and so damn easy to use, its probably the last theme you will ever buy
    [/av_promobox]
    [/av_section]
    
    [av_one_fourth first]
    [av_textblock ]
    <h6>Recent News</h6>
    <em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</em>
    
    <a href="#">View more</a>
    [/av_textblock]
    [/av_one_fourth]
    
    [av_three_fourth]
    [av_postslider link='category,3' columns='3' items='3' contents='title' autoplay='no' interval='5']
    [/av_three_fourth]
    
    [av_hr class='default' height='50' position='center']
    
    [av_one_fourth first]
    [av_textblock ]
    <h6>Recent Work</h6>
    <em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</em>
    
    <a href="#">View more</a>
    [/av_textblock]
    [/av_one_fourth]
    
    [av_three_fourth]
    [av_postslider link='portfolio_entries' columns='3' items='3' contents='title' autoplay='no' interval='5']
    [/av_three_fourth]
    
    

    I recommend to insert it into the “standard” editor. Then switch to the “advanced” template editor and Enfold should convert the shortcodes to a working template. Obviously you need to replace the demo content (and images) with your custom content but it will help you to re-create the demo page.

    Regards,
    Peter

    in reply to: Un-mute audio in an embedded video in a Color Section #311478

    Hey!

    Great – I’m glad we could help you :)

    Best regards,
    Peter

    in reply to: How can I change the font size in footer? #311477

    Hey Joerg!

    It depends on the widgets you’re using in the footer area. If you want to overwrite the font size of all widgets try this css code.

    
    #top #wrap_all #footer .flex_column p{
    font-size: 10px !important;
    }
    

    If you want to change the size of the copyright text use:

    
    #top #wrap_all #socket, #top #wrap_all #socket span{
    font-size: 10px !important;
    }
    

    Cheers!
    Peter

    in reply to: Quick CSS codes causing font to change and bold #311469

    Hey AMseptemeber!

    Yes, the code is not valid. Please replace:

    
    @media only screen and (max-width: 768px) {
    .html_header_transparency #top #wrap_all #main { margin-top: -82px; }
    

    with

    
    @media only screen and (max-width: 768px) {
    .html_header_transparency #top #wrap_all #main { margin-top: -82px; }
    }
    

    Cheers!
    Peter

    in reply to: Enfold / Woocommerce Image Zoom #311459

    Hi!

    Awesome :) – thank you!

    Best regards,
    Peter

    in reply to: Cloud Zoom plugin stopped working after theme update. #311458

    Hey denislaroche!

    I couldn’t find an obvious error on the product page and I think it’s a plugin issue. Please contact the cloud zoom plugin author and ask him for help because we don’t provide support for third party plugins. You can also try a different cloud zoom plugin like : https://kriesi.at/support/topic/enfold-woocommerce-image-zoom/#post-311107 which officially supports our theme.

    Cheers!
    Peter

    Hey Christian!

    Versuche einmal diesen Code in das Quick CSS Feld einzufügen:

    
    @media only screen and (max-width: 989px) and (min-width: 768px){
    #header_main > div > strong > a > img {
    max-height: 88px !important;
    height: 88px !important;
    }
    }
    

    Cheers!
    Peter

    in reply to: Avia Layout Builder Beiträge/Posts #311284

    Hi!

    Nein, Blog Posts wurden NIE vom Avia Template Builder unterstützt. Das war seit Version 1.0 so und wird sich vermutlich auch nicht mehr ändern, da die Advanced Templates einfach mit dem Archive Seiten und Post Formaten (Video, Bild, Libk, etc. Post) nicht kompatibel sind. Ich vermute, dass die verwirrenden Antworten aufgrund der unverständlichen Google Translate Übersetzung zustandegekommen sind :)

    Best regards,
    Peter

    in reply to: Un-mute audio in an embedded video in a Color Section #311282

    Hey!

    Thank you for reporting this issue. We’ll fix it with the next update. For a temporary fix open up enfold\config-templatebuilder\avia-shortcodes/section.php, delete the entire code within the file and insert this code: http://pastebin.com/raw.php?i=Aes0yaDE

    The next version will contain this fix and you don’t need to modify the parent theme files again.

    Cheers!
    Peter

    in reply to: Enfold – Dead Theme Links #311043

    Hi bitsoul!

    Yes – you can block it with a robots.txt file – see: https://kriesi.at/support/topic/issue-with-google-webmaster-tools-error-404/#post-263800

    Regards,
    Peter

    in reply to: What size of featured image should I use? #311042

    Hi!

    No because it seems like you’re using a php script which is not part of the theme and which resize the images on the masonry page completely independent from the featured image size. The script adds a php parameter to the images and resizes them based on this parameter. I.e. the first image url here: http://shutterliving.com/homepage/recent-work/ points to http://i2.wp.com/shutterliving.com/wp-content/uploads/2012/10/shutterLIVING.com-Jamie-A-Cowan003.jpg?fit=705%2C705 and thus the image is resized to 705px. The original image (with the size of 800×533: http://i2.wp.com/shutterliving.com/wp-content/uploads/2012/10/shutterLIVING.com-Jamie-A-Cowan003.jpg ) is not used.

    Cheers!
    Peter

Viewing 30 posts - 2,131 through 2,160 (of 9,352 total)