Forum Replies Created

Viewing 30 posts - 4,621 through 4,650 (of 9,352 total)
  • Author
    Posts
  • in reply to: 404-hook-in the-php #237818

    Hi!

    This article: https://codex.wordpress.org/Function_Reference/add_action gives you a quick overview. I.e. add this code to your functions.php file

    
    function avia_extra_404_content() {
     echo "<h2>My custom html content</h2>";
    }
    add_action( 'avia_404_extra', 'avia_extra_404_content' );
    

    and the action will add the sentence “My custom html content” to the 404 website. You can also use the avia_extra_404_content function to execute shortcodes or to add some other custom text/code to the page.

    Best regards,
    Peter

    in reply to: Layer Slider problem with accentuated character "à" #237556

    Hi!

    I asked Kriesi to report this bug to the layerslider plugin author. For now try to replace the à character with the html entity:

    
    &agrave;
    

    Regards,
    Peter

    in reply to: Tab inside tab #237533

    Hi Karam!

    Yes, unfortunately it’s not possible to display tabs inside of tabs. You can try to use the “Accordion/toggle” element/shortcode instead.

    Regards,
    Peter

    Hey!

    No, afaik the “duplicate” feature should work just fine. I tested it on my test server and I couldn’t reproduce the issue. I’ll tag this thread for Kriesi though – maybe he’s aware of a plugin bug or maybe we can ask the LayerSlider plugin author if there’re any known issues.

    Cheers!
    Peter

    in reply to: Woocommerce product categories in masonry #237529

    Hi!

    The masonry grid doesn’t support categories at the moment and it’s also not easily possible to add this feature. You can vote for a new feature here: https://kriesi.at/support/topic/enfold-feature-requests/ or hire a freelancer who can build you a “category masonry grid” element.

    Regards,
    Peter

    Hey kardemomme!

    Please update to 2.6.1. The issue should be fixed in the latest version.

    Best regards,
    Peter

    in reply to: WooCommerce Product Image Overlay #237524

    Hey!

    I checked the css code and you mised the \ character. Please replace:

    
    .single-product .image-overlay .image-overlay-inside:before {
    content: 'E803';
    }
    

    with

    
    .single-product .image-overlay .image-overlay-inside:before {
    content: '\E803';
    }
    

    Regards,
    Peter

    in reply to: Styling issues with Enfold and OptimizePress plugin #237523

    Hey Antonio!

    Please post a link to the website.

    Best regards,
    Peter

    in reply to: Portfolio items all 404's Rewrite rules missing? #237522

    Hey!

    I checked all portfolio entries and the links work for me – did you solve the problem?

    Best regards,
    Peter

    in reply to: Problems with responsive design #237521

    Hi!

    Yes, I think this thread will help you: https://kriesi.at/support/topic/disappear-title/

    Best regards,
    Peter

    in reply to: Fatal Error Message after updating Enfold theme #237520

    Hey markpevans!

    Please try to re-upload all theme files with ftp: https://vimeo.com/channels/aviathemes/67209750 and make sure that the client overwrites all files.

    Best regards,
    Peter

    in reply to: Portfolio images and configuring portfolio entries. #237508

    Hi blaircomm!

    1) You can install this plugin: http://wordpress.org/plugins/wp-gallery-custom-links/ to apply a custom link to the gallery images. You could use it to i.e link your square thumbnail images to another “full size” image.

    2) If you need full control over the thumbnail size you can select the “Don’t show the images at all and display the preview text only” option: http://www.clipular.com/c/6453051829256192.png?k=5TIdSdjsRn87CQytVuQeUU4899A

    By going this way Enfold will stretch the content area of the ajax preview to 100% width and then you can use the entire space to build your custom layout. I.e. use the gallery and column shortcodes to build your custom gallery preview. The advantage is that you can use the thumbnail size options: http://www.clipular.com/c/5101738725998592.png?k=HlLKLkHRaW2pCz2oP5_O7UD9Ozw to determine the size of the squared images. You can install a plugin like: http://wordpress.org/plugins/simple-image-sizes/ to define new thumbnail sizes.

    I am using the “Child” theme, so in what files can I customize the blow-up size, background fades, and so on?

    Do you want to change the portfolio ajax animations? If yes the theme does not allow you to customize these settings. You would need to modify the enfold/js/avia.js but this may require some customization work and depending on your coding skills I recommend to hire a freelancer. You also can’t overwrite the js file directly with the child theme. If you want to remove the default avia.js file and register a custom avia.js file insert this code at the very bottom of the child theme functions.php:

    
    if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    	wp_dequeue_script('avia-default');
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false);
    	wp_enqueue_script( 'avia-default-child' );
    }
    
    

    and then place the modified avia.js into your child theme (enfold-child/js/avia.js).

    3) Yes, if you want to open the full size image with the lightbox insert this code at the very bottom of your child theme functions.php file:

    
    add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
    function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta)
    {
        $link = wp_get_attachment_image_src($attachment->ID, "full");
        return $link;
    }
    

    Best regards,
    Peter

    in reply to: Portfolio Grid categories choice is BLANK! #237506

    Hi kimchan2!

    1) Please make sure that one or more portfolio items are connected to the portfolio categories. The theme will not list categories which are empty (= no items are part of the category).

    2) Make sure you’re using the latest version of the theme (Enfold 2.6.1) and WordPress (3.8.1).

    3) If it still doesn’t work deactivate all third party plugins and check if it’s a plugin conflict.

    Cheers!
    Peter

    in reply to: Logo support for SVG #237505

    Hey!

    You can try to use this code to float the logo to the left:

    
    #header .logo img, #header .logo {
    left: 0;
    float:left;
    }
    

    I didn’t test it on your staging server but it should work.

    Best regards,
    Peter

    Hi Bedros!

    I didn’t test the code but try to insert it at the very bottom of functions.php:

    
    if(!function_exists('avia_remove_current_entry_from_query'))
    {
    	function avia_remove_current_entry_from_query($query, $params)
    	{
            $id = avia_get_the_ID();
            $query['post__not_in'] = array($id);
    	    return $query;
    	}
    	
    	add_filter('avia_masonry_entries_query', 'avia_remove_current_entry_from_query', 10, 2);
    	add_filter('avia_post_grid_query', 'avia_remove_current_entry_from_query', 10, 2);
    	add_filter('avia_post_slide_query', 'avia_remove_current_entry_from_query', 10, 2);
    	add_filter('avia_blog_post_query', 'avia_remove_current_entry_from_query', 10, 2);
    }
    

    It should exclude the current page/post from the portfolio grid query.

    Regards,
    Peter

    in reply to: Portfolio items #237499

    Hi bastikan!

    Du meinst wahrscheinlich die Anpassung hier: https://kriesi.at/support/topic/portfolio-item-2/ ? Ich vermute Josue hat einfach in enfold/single-portfolio.php diese Zeile:

    
    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    

    mit:

    
    $avia_config['size'] = 'full';
    

    ersetzt. Dann wir statt dem Thumbnail das Originalbild verwendet und das Foto nicht abgeschnitten.

    Regards,
    Peter

    in reply to: Latin extended for Opensans #237497

    Hi!

    You do not use Open Sans but another font called “Terminal Dosis”. Afaik “Terminal Dosis” is not a google font and it might not support the Polish characters.

    Cheers!
    Peter

    in reply to: Extrem langsam #237493

    Hi!

    Du kannst dieses Plugin: http://wordpress.org/plugins/simple-share-buttons-adder/ ausprobieren. Soweit ich weiß lädt es nicht die ganzen js/api Dateien.

    Bzgl Backend habe ich leider keine Tipps – ein Cache Plugin macht hier keinen Sinn und das Theme bietet hier auch keine Optimierungsmöglichkeiten. Ein Freund hat mir einmal berichtet, dass die deutsche Übersetzung ordentlich an Performance kostet – daher laufen meine Testserver mittlerweile nur mehr auf Englisch. Bei einem Produktivsystem für eine deutsche Website lässt sich dies aber naturgemäß schwer umsetzen.

    Ich denke kaum das ihr mit WooCommerce, WPML, Enfold und WordPress auf 2,x Sekunden Ladezeit kommen werdet. Falls ihr das wirklich wollt müsst ihr in dezidierte Server und ein gutes CDN investieren und das geht ordentlich ins Geld. Selbst Kriesis Website benötigt bei mir 2,3 Sekunden zum Laden und die Seite ist auf einem dedicated Server gehostet. Dazu muss man bei euch noch WPML beachten, welches auch locker eine halbe Sekunde bis Sekunde Performance kostet. Wenn dann der Shop selber noch viele Produkte hat wird auch WooCommerce langsamer (va in Kombination mit WPML) und dann geht die Zeit nochmals weiter nach oben.

    Regards,
    Peter

    Hi!

    I did a quick test and I couldn’t even get the shorcode to work on the standard page: http://springbranchbears.com/1974/2/membership-testing/

    If the wpmu plugin doesn’t work try http://wp-member.com/ or S2 Member instead. I tested both plugins and they work with Enfold. If you want to use theme with the advanced layout builder just make sure that the content is part of a textblock. If you want to wrap several other shortcodes/elements into a membership shortcode use the magic wand icon and the default editor to build the content. The “dragn’drop” builder does currently not allow you to wrap several other elements into a membership shortcode.

    Best regards,
    Peter

    in reply to: rss #237469

    Hey!

    1) RSS is just a special protocol which broadcasts your posts. It requires a special reader (i.e.: https://chrome.google.com/webstore/detail/rss-feed-reader/pnjaodmkngahhkoihejjehlcdlnohgmp ) . The advantage is that the rss plugins check the feed from time to time and then the plugin notifies the user that a new post was published.

    2) Yes see: http://www.wpbeginner.com/wp-tutorials/how-to-make-separate-rss-feed-for-each-category-in-wordpress/ – i.e. just go to the category page: http://emiousyrou.factoriadigitalpremium.es/etiqueta/pt and add feed to it ( http://emiousyrou.factoriadigitalpremium.es/etiqueta/pt/feed ).

    Regards,
    Peter

    Hey!

    I’ll mark this for Kriesi. Maybe he knows a google maps api parameter which allows you to adjust the image position. I did a quick search and couldn’t find something useful.

    Best regards,
    Peter

    in reply to: Portfolio Probleme Anzeige #237453

    Hey!

    Seit Enfold 2.4 kann man die Optionen des Parent Themes auf das Child Theme übertragen – siehe hierzu: http://kriesi.at/documentation/enfold/using-a-child-theme/

    Cheers!
    Peter

    in reply to: Auf meiner Seite kommen ungewollte Produktwerbung? #237452

    Hey set_carsten!

    Vielleicht hilft dir dieser Artikel: http://www.2-removevirus.com/de/superfish-entfernen/

    Best regards,
    Peter

    in reply to: Update und Header Problem #237450

    Hi simonac!

    Ja, ich würde empfehlen die Header Optionen nochmals durchzugehen und diese falls nötig anzupassen. Bzgl des Quick CSS Codes bin ich mir nicht sicher – da muss man sich nach dem Update ansehen, welche Elemente durch den CSS Code beeinflusst werden und ob dieser vielleicht geändert werden muss.

    Best regards,
    Peter

    Hey!

    I’m not sure about it but maybe the old WordPress version cause the issue. Please try to update to WordPress 3.8.1. If you deactivate the WP SuperCache (to test if it’s a cache issue) don’t forget to set the WP_CACHE constant in wp-config.php from TRUE to FALSE. Otherwise the cache is still active.

    Cheers!
    Peter

    in reply to: Portfolio – no pictures with wpml #237445

    Hi!

    Before I start to look into the issue – please update WPML to the latest version (I think 3.1.4+ is the latest version) and also update all extensions. Also update Enfold to the latest version (2.6.1).

    Best regards,
    Peter

    Hi!

    Please post a link to your website. The masonry gallery should link to the original images if you add the code to the functions.php file. If the code is in place and works properly the only other possible solution would be to replace the prettyphoto script with another lightbox like fancybox.

    Best regards,
    Peter

    in reply to: Disabling Autoplay on Fullscreen Slider #237440

    Hey!

    I tagged this thread for Kriesi. He worked on the slider code and is more familiar with it.

    Best regards,
    Peter

    in reply to: Image link to an email / resizing logo header #237439

    Hi Blase!

    1) You can use a mailto link: http://www.w3schools.com/html/tryit.asp?filename=tryhtml_mailto – just embed it into the text content like a standard url.

    2) I can’t access the website Site non trouve) but since Enfold 2.6.1 you can set a different header height (Enfold > Theme Options). Try to increase the height and the logo size should increase too.

    3) I don’t know if/how you can change the port. Imo this is a server issue and the host/server administrator must solve it. If you can’t update the theme with wordpress I recommend to use ftp: https://vimeo.com/channels/aviathemes/67209750 to upload the theme files.

    Regards,
    Peter

    in reply to: Extrem langsam #237435

    Hey medienvirus!

    1) Kriesi verwendet einen dedicated Server von All-Inkl. Die genauen Leistungsdaten weiß ich jetzt nicht, können aber auf deren Homepage abgefragt werden.

    2) Wenn ihr die Anzahl der JS Scripts reduzieren wollt, würde ich die Social Icons entfernen. Wenn man sich ansieht, welche Scripts hierbei geladen werden (Facebook 80kb, google plus 60kb, etc.) dann kommt da schon 200-300kb Datenvolumen zusammen. Insgesamt lädt die Unterseite bei mir aber mit 4,5 Sekunden recht schnell.

    3) Ich denke nicht, dass Hosteurope sich die Mühe macht die Daten zu ändern, zumal der Kunde sowieso wechselt, wenn er mit der subjektiv wargenommenen Leistung nicht zufrieden ist…

    Best regards,
    Peter

Viewing 30 posts - 4,621 through 4,650 (of 9,352 total)