Viewing 30 results - 15,721 through 15,750 (of 16,891 total)
  • Author
    Search Results
  • #268717

    In reply to: Save Template

    Hey!

    It’s enabled now, check:
    http://shiofuki-manabu.com/wp-admin/post.php?post=27&action=edit

    Cheers!
    Josue

    #268413

    Hey!

    Thank you for the info.

    We tested the page and found out that the fullwidth easy slider at the very bottom of the page is causing the issue. We removed it for now and if possible recreate the slider again from scratch. Let us know if the issue with the sidebar persists. Regarding the image slider size, suggested image size that you need to upload is 1500x500px for pages with a sidebar or you can try to edit functions.php. Find this code on line 101:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Adjust the width and height attribute then set the crop parameter to false.

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270, 'crop' => false);		                 // big images for blog and page entries
    

    Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #268117

    Hi fjd12265!

    No, we’ve not received many reports regarding performance issues. Maybe a handful of users reported problems with the performance (mainly because of the limited server php memory like here: https://kriesi.at/support/topic/memory-usage/ and afaik another user switched the host because the server didn’t support sessions) but given the fact Enfold sold nearly 28,700 times these reports are insignificant. We do our best to make the code as efficient as possible and if we find performance issues we fix them immediately. If your host makes troubles when you use Enfold I recommend to switch to a different (better) hosting provider because at the moment we’re not aware of any performance issues with the theme and we’re not working on a “performance” update.

    Best regards,
    Peter

    #267971

    In reply to: errors in code

    This reply has been marked as private.
    #267943

    In reply to: Sidebar Error 404 Page

    Hey Stuart!

    Please go to Appearance > Editor and open 404.php file and replace the content with this one – http://pastebin.com/XrZt9C73

    Regards,
    Yigit

    #267781

    Hi Sven!

    Thank you for using the theme!

    You can add this on functions.php to render the breadcrumbs on the header meta container:

    add_action('avia_meta_header', 'avia_meta_header_breadcrumbs');
    
    function avia_meta_header_breadcrumbs() {
    	$breadcrumb = avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    	echo $breadcrumb;
    }

    After that, add this on Quick CSS or custom.css to reposition the element and remove the default breadcrumb:

    .title_container div.breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: none;
    }
    
    #header_meta div.breadcrumb.breadcrumbs.avia-breadcrumbs {
    position: absolute;
    left: 0;
    bottom: -7px;
    }

    Best regards,
    Ismael

    Hi tom77113!

    Thank you for visiting the support forum!

    1.) Are you using the Grid Layout for the blog? Unfortunately, you can’t use shortcodes for the excerpt. You might need to hire a freelance developer to modify the theme for you. Please visit Envato Studio or Werkpress for further customization. There is a workaround if you’re using the grid layout. Please edit config-templatebuilder > avia-shortcodes > postslider.php. Find this code on line 311:

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');
    

    Replace it with this:

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : do_shortcode(avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 150) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " ") , "…", false, ''));
    

    2.) I’m not sure if understand this one correctly so please provide us with a link to the actual page. I’ll ask Dude to check this thread.

    Regards,
    Ismael

    This reply has been marked as private.

    Josue,

    Below is what I added. Please tell me if that’s correct.

    Thanks

    Mike

    ————————————————————
    Added below the very last line of code in functions.php
    ———————————————————————–
    function custom_code(){
    if ( is_page( 24 )) {
    ?>
    <!– secure image tag –>
    <img src=”https://admanager.namidirect.com/conversion/qQSDZhZyj7XRchfchRa?image=true&#8221;
    height=”1″ width=”1″ style=”visibility:hidden;” />
    <?php
    }
    }
    add_action(‘wp_footer’, ‘custom_code’);

    #266958

    In reply to: Site Map Issue

    Hey!

    Fixed:
    http://www.bluebeen.co.uk/archivesitemap/#tab-id-1

    It appears you need to have at least one Post here:
    http://www.bluebeen.co.uk/stuart/wp-admin/post.php?post=3274&action=edit

    Regards,
    Josue

    #266907
    GOWD
    Participant

    Hi,

    The site I am working on is http://www.agathosfinancial.ie
    The Enfold theme is the latest version 2.7.1 on WordPress 3.9.1

    I am having problems getting the changes I am making to the styling in Enfold for the header body footer socket to change the front end.

    I have created a login for you.
    ***removed and privately posted below by Yigit**

    The permissions on the themes generated css file is 744:
    http://agathosfinancial.ie/wp-content/uploads/dynamic_avia/enfold.css

    The PHP is set to Apache Module with the host

    I don’t know what is stopping the changes

    Any help would be much appreciated

    • This topic was modified 11 years, 10 months ago by Yigit.
    #266863

    Hi LecheLMP!

    I’m not sure what you mean from looking at the site and your description. The image sizes in the theme didn’t change with any of the last updates and the only image size that has a 710px edge is:
    $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries

    Which is for the blog entries with a sidebar. They are default set to have a height of 270 by that line in the functions.php and has been since release.

    Regards,
    Devin

    #266753

    Hi!

    Undo-ing changes you have made on Functions.php file via FTP or replacing the file should work, but if not, please try re-updating the theme via FTP – http://vimeo.com/67209750

    Regards,
    Yigit

    #266690

    The screenshot link:
    http://www.hostingpics.net/viewer.php?id=753791Screenshot.jpg

    • This reply was modified 11 years, 10 months ago by egraphique.
    #266629
    This reply has been marked as private.
    #266582

    Hi!

    Sorry for the delay.

    I’ve tested this again on my end and it works fine. You just need to copy and paste the suggested code at the very bottom of functions.php:

    add_action('ava_main_header', 'ava_main_header_background');
    
    function ava_main_header_background() {
    	echo "<div class='left-header-bg'></div>";
    }

    After that, go to the Quick CSS field and paste the css snippets above. The result should be like this:

    Cheers!
    Ismael

    #266356

    Hey @teddybaker!

    Try adding this to the theme functions.php file (at the end)

    
    function after_head_image_func(){
    	?>
    	<div class="custom_content">
    		<div class="c_flags">
    			<img src="_flag_image_url_here">
    			<img src="_flag_image_url_here">
    			<img src="_flag_image_url_here">
    		</div>
    		<div class="c_bluetitle">
    			Value Added Computer Hardware Distribution
    		</div>
    		<div class="c_graytext">
    			Call to speak to our sales team <span class="c_phone">0 44 (0) 161 947 4321</span>
    		</div>
    	</div>
    	<?php
    }
    add_action('ava_after_main_menu', 'after_head_image_func');

    After you done that, post a link to your website so we can help you with the styling.

    Best regards,
    Josue

    #266317

    Hi all,
    great job – giant template – thank you!!

    ONE QUESTION
    I am using WP 3.8.2 and ENFOLD 2.7.1
    I want to modify the header as described in the screenshot – add an additional image (orange logo)
    I have no idea about PHP and a little about CSS – how can I do this best in view of the fact that updates should work without problems?

    SCREENSHOT
    https://drive.google.com/file/d/0B0TqEFDVcQi8Y001NkdWdl83cGM/edit?usp=sharing

    Thank you
    Peter

    #266218

    Du benutzt leider eine veraltete Version des Enfold Themes.
    Bitte update auf die neuste version: http://vimeo.com/67209750

    1. Die grauen Linien zu entfernen sollte kein CSS benötigen. Das ist in den Enfold Optionen under “Header Layout” zu managen.
    Ansonsten:

    #header_meta {
        display: none;
    }

    2. Soweit ich weiß, wird das nicht supportet. Kann mich aber auch irren.
    Du müsstest aber in der header.php folgendes schreiben können zwischen Zeile 65 und 66 (also vor “f(!$blank)”:

    <?php if ( is_page( 'home' )) echo do_shortcode('[layerslider id="1"]'); ?>

    3.

    .widget_nav_menu ul:first-child > .current-menu-item {
        background: none !important;
        box-shadow: none;
    }
    #266025

    Hi!

    Yes, you can modify the logo structure in includes/helper-main-menu.php (line 101), and with some CSS:

    @media only screen and (min-width: 768px) {
    #mobile-logo{
    display: none;
    }
    }
    
    @media only screen and (max-width: 767px) {
    #desktop-logo{
    display: none;
    }
    #mobile-logo{
    display: block;
    }
    }

    Regards,
    Josue

    #265956

    Hey!

    Please click the “Translate independently” button: http://www.clipular.com/c/4673705724608512.png?k=0JgIrSOUpHKLo5oIjhbT1mPAbY8 (I already did that for you on the Spanish homepage here: http://cuinestramuntana.com/?lang=es and then configure the post slider categories. They vary from the Catalan post slider (different ids, etc.). The same procedure is required on the Spanish blog page here: http://cuinestramuntana.com/wp-admin/post.php?post=3000&action=edit&lang=es

    Cheers!
    Peter

    Potala
    Participant

    Hello,
    I’m in trouble about these Warnings.
    It only occurs on the chrome of iPhone.
    It is not occurs at safari of iPhone and IE11 of Windows7,chrome of Windows11,chrome of android…
    I already try to reinstall theme and reconfigure all plug-in. But it is not change.
    If you have a good solution to cure, please tell me.

    Warning: session_start(): The session id is too long or contains illegal characters, valid characters are a-z, A-Z, 0-9 and ‘-,’ in/home/sites/heteml/users182/a/s/u/asukait/web/asuka-yuri.jp/wp/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: session_start(): Cannot send session cookie – headers already sent by (output started at /home/sites/heteml/users182/a/s/u/asukait/web/asuka-yuri.jp/wp/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in/home/sites/heteml/users182/a/s/u/asukait/web/asuka-yuri.jp/wp/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /home/sites/heteml/users182/a/s/u/asukait/web/asuka-yuri.jp/wp/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in/home/sites/heteml/users182/a/s/u/asukait/web/asuka-yuri.jp/wp/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    #265822

    Hey!

    I recommend to create a new folder call “shortcodes” in your child theme folder. Then paste the code from here: https://gist.github.com/InoPlugs/b2dec6233f30bd3104f7 in a php file and save the file as slideshow_masterslider.php. Upload this file into the shortcodes folder. At lease open up the child theme functions.php file and insert this code at the very bottom of the file:

    
    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;
    }
    

    Afterwards save the file and go to the template builder to use the element. It’s in the last tab.

    Regards,
    Peter

    Hi Jeff!

    Use this exact URL for the link:

    https://www.youtube.com/watch?v=7kYQBVFls9g&hl=en_US&t=3063

    Then, add this add the very end of the theme functions.php file:

    function add_custom_script(){
    	?>
    	<script type="text/javascript" charset="utf-8">
    	   jQuery(window).load(function(){
    	       jQuery("a[href='https://www.youtube.com/watch?v=7kYQBVFls9g&hl=en_US&t=3063']").prettyPhoto({
    	       	   social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery: false,
    	           iframe_markup: '<iframe src="{path}&start=3063" width="{width}" height="{height}" frameborder="no"></iframe>'
    	       });
    	   });
    	</script>
    	<?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Josue

    #265431

    Hey!

    Versucht die child theme functions.php herunterzuladen (ich empfehle hierfür ftp zu verwenden), dann bearbeitet diese mit einem Texteditor (zB: http://notepad-plus-plus.org/ ) und fügt den Code am Ende ein. Anschließend ladet die Datei wieder hoch. Wenn der Fehler dann noch immer auftritt liegt es vielleicht am PHP Memory und ihr müsst diesen auf 128M erhöhen – siehr hierzu: http://bueltge.de/mehr-speicher-fuer-wordpress/957/

    Best regards,
    Peter

    #265413

    Topic: Error after install

    in forum Enfold
    mbateam
    Participant

    I am this error in the header.

    Warning: session_start() [function.session-start]: open(/tmp/sess_220pnvnhe77kt8oe2l9r4c6hs5, O_RDWR) failed: Permission denied (13) in /home/website/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/website/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/website/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    #265382

    In the parent theme:

    header.php, line 66
    js/avia.js, line 1574-1579

    In the child theme:

    style.css, 190-199

    #265288
    This reply has been marked as private.
    slui
    Participant

    Hi,

    I’m having some serious issues with Enfold. I’m not even sure where to begin. WP is installed in a sub-directory. Would love some help with this:

    Warning: session_start() [function.session-start]: The session id is too long or contains illegal characters, valid characters are a-z, A-Z, 0-9 and ‘-,’ in /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-login.php on line 415

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-login.php on line 427

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-login.php on line 429

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 695

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 696

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 697

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 698

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 699

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 700

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 703

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 704

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 705

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 706

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 709

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 710

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 711

    Warning: Cannot modify header information – headers already sent by (output started at /home/XXXXXXXX/public_html/XXXX/wp-content/themes/rtv/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/XXXXXXXX/public_html/XXXX/wp-includes/pluggable.php on line 712

    #264668
Viewing 30 results - 15,721 through 15,750 (of 16,891 total)