Forum Replies Created

Viewing 30 posts - 3,031 through 3,060 (of 9,352 total)
  • Author
    Posts
  • in reply to: Change size icons in icon list? #281131

    Hi Effektid!

    Yes – use this css code and adjust the px values if necessary:

    
    .avia-icon-list .iconlist_icon {
    height: 64px;
    width: 64px;
    line-height: 64px;
    font-size: 30px;
    border-radius: 500px;
    }
    

    You can add the css code to the child theme style.css or into the quick css field.

    Regards,
    Peter

    in reply to: Contact form reset button #281130

    Hi manweb!

    No, such a reset button is not supported at the moment. Afaik even advanced contact forms like Gravity Forms don’t offer this feature out of the box – but you can download a separate plugin: https://wordpress.org/plugins/gravity-forms-reset-button/ to add such a button to the forms.

    Regards,
    Peter

    in reply to: Image overlapping Header and Main content #281128

    Hey opvab!

    Yes, but you must not use a shrinking header or sticky header. Only the standard header (not sticky and not shrinking) supports such a logo. Insert this code into the quick css field:

    
    .logo.bg-logo{
    position: absolute;
    left: 0;
    overflow: visible;
    }
    
    .logo a {
    height: auto;
    }
    
    .logo.bg-logo, .logo.bg-logo img{
    height: 200px;
    }
    

    and replace 200px with your custom logo height.

    Cheers!
    Peter

    Hi!

    Glad Ismael could help you :)

    Regards,
    Peter

    in reply to: CSS for tabs on mobile device/smartphone #281125

    Hi!

    Glad Yigit could help you :)

    Best regards,
    Peter

    in reply to: portfolio category pages #281124

    Hey fonterra!

    Typically your symptoms sound like a permalinks issue. So try going to your Settings>Permalinks and then saving them as default. Check that the links to your single events are working and then re-save with your previous settings 3 times in a row. That will ‘flush’ the permalink settings. You can also try to change the slugs of the portfolio single entries and taxonomy on the Settings>Permalinks page.

    Regards,
    Peter

    in reply to: General Styling Not Taking Effect #281122

    Hey!

    Great, glad it works now :)

    Best regards,
    Peter

    Hey Steve!

    You can use this code (place it into the child theme functions.php or enfold/functions.php):

    
    function add_stuff_before_breadcrumbs() {
    	echo '<div class="stretch_full container_wrap alternate_color light_bg_color title_container"><div class="container">';
    	echo '<img src="http://kriesi.at/wp-content/themes/kriesi/images/enfold.jpg" alt="" title="" />';
    	echo '</div></div>';
    }
    add_action('ava_after_main_container', 'add_stuff_before_breadcrumbs'); 
    

    to add an image above the breadcrumb. Obviously you need to replace “http://kriesi.at/wp-content/themes/kriesi/images/enfold.jpg&#8221; with your custom image url. If you want to change the image based on the page id replace:

    
    echo '<img src="http://kriesi.at/wp-content/themes/kriesi/images/enfold.jpg" alt="" title="" />';
    

    with

    
    $img = "http://kriesi.at/wp-content/themes/kriesi/images/enfold.jpg";
    if(is_page(array(20,30))) $img = "http://mywebsite/image2.jpg";
    if(is_page(array(14,60))) $img = "http://mywebsite/image3.jpg";
    echo '<img src="'.$img.'" alt="" title="" />';
    

    and replace the first image url with the default image, the http://mywebsite/image2.jpg url with the second image, etc. and adjust the page ids (20, 30) and (14, 60), etc.
    14 and 60 would display the image “http://mywebsite/image3.jpg&#8221; in the sample code above.

    Best regards,
    Peter

    in reply to: Header Logo + Columns Don't Resize in Browser #281118

    Hey!

    Please check the server configuration – I get these errors when I try to view the website:

    
    Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=3.9.1
    Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1
    Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/uploads/2013/04/JohnTarnoffBRCLogoFont-Bitter-c90000RED.png
    Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/uploads/2014/06/Clare-Novak-36x36.jpg
    Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/themes/enfold/js/avia-compat.js?ver=2
    Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/uploads/2013/04/JohnTarnoffBRCLogoFont-Bitter-c90000RED.png
    Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/uploads/2014/06/Clare-Novak-36x36.jpg
    
    

    These errors affect the logo which doesn’t display at all etc. and also the theme because the avia-compat.js file is essential.

    Best regards,
    Peter

    in reply to: Change product page layout 1/2 – 1/2 #281116

    Hey!

    Open up wp-content/themes/enfold/config-woocommerce/config.php and replace:

    
    echo "<div class='four units single-product-main-image alpha'>";
    

    with

    
    echo "<div class='six units single-product-main-image alpha'>";
    

    and

    
    echo "<div class='eight units single-product-summary'>";
    

    with

    
    echo "<div class='six units single-product-summary'>";
    

    Regards,
    Peter

    in reply to: Is it possible remove black frame around Vimeo video #281110

    Hey!

    Great, glad it works now :)

    Regards,
    Peter

    in reply to: Tags.. #281108

    Hey rikv!

    We use the the_tags() function: http://codex.wordpress.org/Function_Reference/the_tags to add the tags to the single post template. As far as I know there’s no other best practice to display the post tags and I’m pretty sure it’s not caused by Enfold.

    Best regards,
    Peter

    Hi!

    Go to WooCommerce > Settings > Accounts and tick the “Display returning customer login reminder on the “Checkout” page” checkbox.

    Cheers!
    Peter

    in reply to: Full width masonry sorting abilities #281098

    Hi solarmediapro!

    I’m sorry but “event date” is not a default wordpress orderby/order parameter: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters – and probably it require some additional tweaking and code customization to query the events based on the “event date”. I suggest to contact the plugin author – maybe they can provide some custom code for free and if not please hire a freelancer who can implement the event date query option.

    Best regards,
    Peter

    in reply to: WordPress SEO Problem nach Enfold Update #281094

    Hey!

    Jetzt funktioniert der Benutzername kriesi-admin nicht mehr!

    Cheers!
    Peter

    in reply to: How to let user post/embedd video #280692

    Hey simonac!

    I think advanced contact form plugins like Formidable or Gravity Forms enable you to build such a post form for direct publishing but I’m not entirely sure how difficult the setup is. Depending on your skills you might need someone who can help you with the plugin configuration, etc.

    Cheers!
    Peter

    in reply to: Download Button Link #280690

    Hey!

    Unfortunately this has nothing to do with the theme code or wordpress. You must change the server/htaccess configuration to serve documents as direct downloads see http://css-tricks.com/snippets/htaccess/force-files-to-download-not-open-in-browser/

    Cheers!
    Peter

    in reply to: Wocommerce design problems #280482

    Hi!

    now the description and review tabs are gone again on the product pages.

    1) It’s impossible that my code breaks the tabs – it just changes the color values. Something else breaks them and you must revert your custom code to find the culprit.

    2) Can you post a link to the related products please?

    Cheers!
    Peter

    in reply to: WordPress SEO Problem nach Enfold Update #280452

    Hi!

    Bitte den User Admin-Rechte geben.

    Regards,
    Peter

    in reply to: WordPress SEO Problem nach Enfold Update #280434

    Hi!

    Ich werde mir die Sache morgen ansehen. Bzgl deiner Frage – so eine Option gibt es derzeit leider nicht. Ich habe diesen Thread gefunden: http://wordpress.stackexchange.com/questions/5742/change-the-author-slug-from-username-to-nickname , aber ich kann nicht sagen, ob der Code mit WP3.9 noch funktioniert und ob er uU weitere Fehler provoziert. Wir können dbzgl auch keinen Support anbieten, da die Autoren-Permalinks von WordPress generiert werden und nichts mit dem Theme zu tun haben.

    Cheers!
    Peter

    in reply to: compatibility leadplayer #280430

    Hi Dare2Dream!

    I couldn’t find any obvious error/conflict on the page and I don’t know why the plugin doesn’t work. The js developer console doesn’t output any warning or error and the html code also seems to be valid. I recommend to use the default embed shortcode instead: http://codex.wordpress.org/Embeds or you can also use the Enfold video shortcode/element. You can also try to contact the plugin author – maybe he can provide free or paid support.

    Regards,
    Peter

    in reply to: Enfold Portfolio Category Names #280427

    Hey juicesandmilks!

    Yes, I found some tutorials with google when I searched for “wordpress add category name to body class” – i.e. http://bavotasan.com/2011/add-a-posts-category-name-to-body-class-in-wordpress/

    Best regards,
    Peter

    in reply to: The bookmark link of Tab element #280426

    Hi!

    Glad you found a solution :)

    Cheers!
    Peter

    in reply to: Is it possible remove black frame around Vimeo video #280421

    Hey Jane!

    Did you try another video? I’ve the feeling that the video itself contains the black border. I can also see it if I view it on vimeo: https://vimeo.com/98497797 . I.e. our tutorial video: https://vimeo.com/channels/aviathemes/67209750 does not have such a border.

    Best regards,
    Peter

    Hi!

    Glad you found a solution :)

    Cheers!
    Peter

    in reply to: Extra Paragraph codes inserted #280418

    Hey Jane!

    Yes, wordpress adds the p tags automatically to the text content if a textblock element is used (wpautop filter). If you want to add raw code/text to the website please use the code block element instead: http://www.clipular.com/c/5302603256692736.png?k=X97eUXOWCRejlsF8eREUJnP78hg – the code block does not use the wpautop filter to sanitize the text but just embeds the raw user input.

    Best regards,
    Peter

    in reply to: Wocommerce design problems #280417

    Hi!

    1) To change the color of the cart page font use this code:

    
    .woocommerce-cart .main_color span{
    color: #333;
    }
    

    2) You can change the “Ähnliche Produkte” font color with:

    
    #top #wrap_all .related.products h2, #top #wrap_all .upsells.products h2 {
    color: #333;
    }
    

    3) The single product pages do not have a sidebar in the common sense and the widgets (Single Product widget area) display underneath the product thumbnail. If you want to hide them use some css code:

    
    .single-product .sidebar {
    display: none;
    }
    

    Cheers!
    Peter

    in reply to: Title & Breadcrumbs Section #280413

    Hi!

    Adding a color section to the header is not easily possible because it completely breaks the html structure. It can be done but requires quite a lot of testing and tweaking and it’s not something we can assist you with. If you want to add additional content to the header (below the menu and above the breadcrumb use this code:

    
    function add_stuff_before_breadcrumbs() {
    	echo '<div class="stretch_full container_wrap alternate_color light_bg_color title_container"><div class="container">';
    	echo 'Some html content';
    	echo '</div></div>';
    }
    add_action('ava_after_main_container', 'add_stuff_before_breadcrumbs'); 
    

    and replace “Some html content” with your html code. You can also try to use the do_shortcode() function if you want to add a shortcode.

    Cheers!
    Peter

    in reply to: It won't recognize my changes #280409

    Hey!

    Please try to install a child theme: http://kriesi.at/documentation/enfold/using-a-child-theme/ and add your custom css code to the child theme style.css file. It’s the recommended/best practice and you won’t loose the changes when you update Enfold (parent theme).

    Best regards,
    Peter

    in reply to: Custom addition to Avia Layout Builder's Tabs #280408

    Hey m_reaney!

    This is definitely doable but requires some time intensive work and is beyond the scope of our free support forum. I suggest to hire a freelancer from envato studio: http://studio.envato.com/ who can work out a solution and give you a quote.

    Best regards,
    Peter

Viewing 30 posts - 3,031 through 3,060 (of 9,352 total)