Viewing 30 results - 15,331 through 15,360 (of 16,892 total)
  • Author
    Search Results
  • #311243

    Hola,

    1-2. Para quitar el bold de un texto tienes que ponerle font-weight: 300 a los elementos que quieres afectar:

    .product-sorting li strong {
        color: #828282 !important;
        font-weight: 300;
    }
    .price .amount {
        font-weight: 300 !important;
    }

    3. Tendrías que cambiar el orden en el que los datos del producto se ordenan, esto puede funcionar (añadelo a functions.php):

    function change_wc_order() {
    	remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
    	add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 40 );
    }
    add_filter('init', 'change_wc_order');

    4. Para quitar el borde:

    .single-product #av_section_1 {
        border-top: 0;
    }

    Para cambiar el numero de productos:
    https://kriesi.at/support/topic/changing-number-of-related-products/#post-226571

    5. Prueba con esto (ajusta los colores):

    .avia-slideshow-arrows a:before{
        background: red;
        color: blue !important;
    }

    Lo del numero 6 es por una diferencia de relación de aspecto:
    http://www.carrazart.com/wp-content/uploads/2014/05/AMAZING-GRAYS_RED2.jpg
    http://www.carrazart.com/wp-content/uploads/2014/08/RREBIRTH21.jpg

    Saludos,
    Josue

    #311102

    Hello,
    Three questions please – (perhaps one should actually be in a different post?)
    1. I want to do the same as webbee – modify the child functions.php file to change image sizes. Do I understand correctly from this thread that this is not possible right now? I def. prefer not to add plugins unless absolutely necessary, but it sounds like the parent functions.php had to be modified. Yes or no? If so, how do I do this and will I lose the change with an update?

    2. You said above “You have to put your code in the child theme in an action hook:” If I post the code (I’ve copied in below) into the child functions.php file – exactly what needs to be posted with it to make it override the parent?

    I changed to Enfold from another theme (loving it so far) and know that I need to regenerate the thumbnails, but I would like to set and test sizes. I want to test with how big images can be without slowing down site and see how various options look before making a decision about the final layout. Last question may belong in another post, but I can’t find search results that address it and this is what I hope to do with the child theme…

    3. Since my site features video and websites, I want proportions to be (at least roughly) 16:9 for all thumbs/images associated with the video category, post format and specific tags. (It would be cool to have 4:3 or even square for the website items, but I can live without that if needed.) The site is small/new enough that I can delete and re-upload images if necessary, because speed on mobile vs great looking video is the decision I am facing when I select optimal sizes.

    I’m starting with 1920X1080 images (or could use 1280X720) as large screen shots for videos, but can anyone advise/explain what – if anything – will happen to the responsive/mobile version if I start changing the proportion here?
    I did find the section (copied below) in the parent functions file that I assume I would need to modify:

    /*
     * Register additional image thumbnail sizes
     * Those thumbnails are generated on image upload!
     *
     * If the size of an array was changed after an image was uploaded you either need to re-upload the image
     * or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
     */
    
    $avia_config['imgSize']['widget']  = array('width'=>36,  'height'=>36);      // small preview pics eg sidebar news
    $avia_config['imgSize']['square']  = array('width'=>180, 'height'=>180);   // small image for blogs
    $avia_config['imgSize']['featured']  = array('width'=>1500, 'height'=>430 );  // images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] = array('width'=>1500, 'height'=>630 );   // images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large']  = array('width'=>1500, 'height'=>1500 , 'crop' => false);   // images for fullscrren slider
    $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 );   // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small']  = array('width'=>260, 'height'=>185 );    // images for portfolio 4 columns
    $avia_config['imgSize']['gallery']  = array('width'=>710, 'height'=>575 );    // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine']   = array('width'=>710, 'height'=>375 );    // images for magazines
    $avia_config['imgSize']['masonry']    = array('width'=>705, 'height'=>705 , 'crop' => false);   // images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar']  = array('width'=>710, 'height'=>270);   // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );   // images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
         $avia_config['imgSize']['gallery']  = array('width'=>845, 'height'=>684 );  // images for portfolio entries (2,3 column)
         $avia_config['imgSize']['entry_with_sidebar']   = array('width'=>845, 'height'=>321);   // big images for blog and page entries
         $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );   // images for fullsize pages and fullsize slider
    }
    
    

    Is there an easier/simpler way to approach this? Anyone else doing mostly video who has a solution?
    Thanks so much for any assistance with this.

    • This reply was modified 11 years, 7 months ago by siestajoye.
    #311093

    Folder names under wp-content/themes:
    enfold
    theme 1357
    twentyfourteen
    twentythirteen
    twentytwelve
    index.php

    Version of enfold > style.css:
    Version: 2.9.1

    This is weird, on WordPress under appearance/themes enfold shows 2.6.3.

    I’m open to any suggestions at this point.

    Thanks

    #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

    #310980

    Hi Yigit, I’ve done the steps above, but nothing is happening at all.

    The image or href are not being displayed, even in the code of the page at all. Any ideas?

    http://216.14.124.114/~ecatalogservices/WordPressTest/

    That section of helper-main-menu.php now looks like this:

    <div id='header_meta' class='container_wrap container_wrap_meta <?php echo avia_header_class_string(array('header_social', 'header_secondary_menu', 'header_phone_active'), 'av_'); ?>'>
    
    <div class='custom-header-image'><a class='live-help' onclick='return SnapABug.startLink();' href='#'><img border='0' alt='Live Help: Online' src='https://snapabug.appspot.com/statusImage?w=1a1e827f-2f3e-4143-83c5-519222219617'></a></div>

    However, nothing of the above code is displayed on the actual web page. Not even the custom-header-image div.

    Thank you.

    • This reply was modified 11 years, 7 months ago by aregowe.
    #310974

    Okay, so I’ve done that correctly I believe and discussed it with my hosting provider.

    I’m still concerned with the HTML character code I’m using to make an arrow, from this website.

    http://character-code.com/arrows-html-codes.php

    https://www.dropbox.com/s/gpnmhdi976qcu02/IMG_20140829_110409.jpg?dl=0

    That what I get when I entered this in the menu title,

    Stupid iPads!

    This reply has been marked as private.
    #310871

    In reply to: Log In – recovery

    This reply has been marked as private.
    #310861

    Hi Ti7V!

    Try to replace this code in enfold/config-templatebuilder/avia-shortcodes/magazine.php:

    
    			if($style == 'small')
    			{
    				if(empty($this->atts['thumbnails']))
    				{
    					 $image = "";
    					 $extraClass = "av-magazine-no-thumb";
    				}
    			}
    			else
    			{
    				$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');
    			}
    

    with:

    
    			if($style == 'small')
    			{
    				if(empty($this->atts['thumbnails']))
    				{
    					 $image = "";
    					 $extraClass = "av-magazine-no-thumb";
    				}
    			}
    
    				$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');
    

    Best regards,
    Peter

    #310846

    Hey!

    I activated some plugins and got this error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 491520 bytes)…

    You can fix it by editing wp-config.php -see : http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/ or http://faq.wpde.org/exhausted-php-memory/ . I recommend to set the allocated memory to 128M

    Cheers!
    Peter

    #310628

    In reply to: Widget on header

    so i don’t do this : https://kriesi.at/support/topic/insert-search-button-and-widget-area-in-the-secondary-menu-bar/#post-304697

    and only do functions.php function include?

    if i do that is shown a blank page, no page load

    #310549

    Hey adwordsfriends!

    1) You can use this code to remove the default theme flags completely – insert it into the functions.php file:

    
    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
    }
    

    The WPML plugin should add the language dropdown to the menu if you tick the “Display the language switcher in the WP Menu” option and select the main menu (or secondary menu) in the dropdown: http://www.clipular.com/c/5697699709976576.png?k=tR7hiYan-r1Pht6Rl__rwYgcx8k

    Regards,
    Peter

    #310535

    In reply to: Layout Gravity form

    Hey!

    Did you try to use the “conditional menu” feature – you can activate it easily by adding one line of code to your child theme functions.php or enfold/functions.php file:

    add_theme_support( 'avia_conditionals_for_mega_menu' );
    

    It’s a native Enfold feature which helps you to use conditionals for menu items:

    Best regards,
    Peter

    #310513

    Hey!

    I can recommend All-Inkl Hosting. Kriesi and I host our websites there, Kriesi uses a dedicated server, I host my websites on a shared host server. The service is great – they answer your emails often after 30 minutes, 24/7 week. They restore your website (files and database) if you mess something up, they upgrade the php and mysql version to the latest stable versions if you ask them to upgrade them and they allow cloud scripts like owncloud, etc. which also saves you the dropbox account. I even use them for my dynamic ip mappings (which saves me a dyndns or noip.com account). The price is imo fair.

    Cheers!
    Peter

    #309861
    This reply has been marked as private.
    #309663

    Hi!

    This error refer to a whole new different issue but it seems to be temporary. A few users who open this kind of thread doesn’t seem to have a follow up reply after we answered their inquiries which tells us that the issue fixed itself after some time. Please let us know if the issue continues after a few days or you can refer to this link on how to disable the theme session: https://kriesi.at/support/topic/error-issues-with-masonry_entries-php-on-line-33/#post-271660

    If you have the time, please try this fix: https://kriesi.at/support/topic/help-trying-to-understand-error-message/#post-271650

    Regards,
    Ismael

    #309659

    Hey davidchristensen!

    Thank you for using Enfold.

    Please edit functions.php, find this code on line 147:

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

    Adjust the width and height then upload the images or regenerate them using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    #309650

    Hey blancocapell!

    Thank you for using the theme.

    Please edit function.php, find this code on line 144:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    

    Replace it with this:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>1000, 'height'=>1000, 'crop' => false );						// images for portfolio entries (2,3 column)
    

    Adjust the width and height of the gallery images if you like. Upload or regenerate the images again using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    #309423
    Imburr
    Participant

    I use Enfold on two sites, and I have confirmed that this problem affects both sites, both on different hosting. When I upload a .png file into the featured image slot, I get an HTTP error and the upload does not go through. If I refresh the page, the upload did in fact happen, and the document is in my media library. If I attach it as a featured image, it does not display in the post edit backend. It does not show in the front end single view. It DOES show in the blog roll. It also does show in the backend post list.

    On the post edit backend where the featured image should be there is one period. If i right-click inspect element, this is the code:

    <p class="hide-if-no-js"><a title="Set featured image" href="https://www.virginiaseo.org/wp-admin/media-upload.php?post_id=4317&type=image&TB_iframe=1&width=640&height=138" id="set-post-thumbnail" class="thickbox"><img width="1" height="1" src="https://www.virginiaseo.org/wp-content/uploads/2014/08/Buyer-Intent-And-The-Long-Tail-Keyword.png" class="attachment-266x266" alt="Buyer Intent and the Longtail Keyword" title="Buyer Intent and the Longtail Keyword"></a></p>

    If I look at that link to the image, the link is valid. I can even click the link and follow the image to the backend, and it shows up just fine. It seems as if something in the theme is hiding it from the single blog view and from the post edit backend.

    Here are some screenshots:
    http://cl.ly/image/2r0T1a1U2G2a
    http://cl.ly/image/443t2H3g3P3W
    http://cl.ly/image/473u3Z1P2739

    #309409
    davidchristensen
    Participant

    Hi guys

    I have made a homepage with your excellent theme.

    On the page theres is a blog with a sidebar. When I upload a featured image to a post, the image is reseized to 710px with – but I want it to be 845px so it fills the with of the post.

    See here: http://test.moroccanhammam.dk/testtesttest/

    I have tried to fiddle with the functions.php and change the width and then re-upload the image, but it doesnt work.

    Can you help me?

    Kind regards David

    #309398
    This reply has been marked as private.
    #309393
    This reply has been marked as private.
    #309315
    stevemulisa
    Participant

    how can i do to manually update the layer slider !!

    if i do so will i have the ability to add it using the advance layer slider or will i have to use shortcode.

    otherwise when is your next theme update release, i would like to wait, but i m facing a real issue where my slide are blank when i open them for edit and i try to preview them i receive Warning: Illegal offset type in isset or empty in /home/cdcccca1/public_html/wp-includes/post.php on line 1078

    this is especially happening with my biggest slide, — FRENCH BACKUP
    this is happening

    thx for assisting

    #309114

    Hi!

    Thank you for the update.

    Where are you hosting the site and what is the hosting plan that you’re using if it’s OK to ask? The site is loading a little bit slow on my end. Usually minimizing the image file sizes and number of plugins that you install will greatly improve the performance. These are the things that you can do to optimize the website speed and page load courtesy of the wordpress community:

    1. Optimize all images with AI/Photoshop before uploading to server ‘save as web safe’ jpg
    2. Once all images are on the website optimize with ewww optimizer plugin twice 1hr 10mins apart.
    3. Install wp-smushit run once to remove jpeg extra data, then uninstall.
    4. Use BWP minify plugin to minify scripts and stylesheets.
    5. Install WP-Super cache, select all recommended settings.
    6. Logout your website, visit every page at least once to create super cache files.
    7. Join Cloudflare setup your website on their CDN, Choose options: Full CDN Optimisation save then activate purge files. once done log out.
    8. Have a cup of coffee.
    9. Visit your site after 20 minutes or so.
    10. Don’t forget to smile.

    Add this on functions.php to exclude the custom.css file and layout.css file when you minify the scripts using BWP. These two stylesheets breaks the site when included on the compression.

    add_filter('bwp_minify_style_ignore', 'exclude_my_css');
     
    function exclude_my_css($excluded)
    {
        $excluded = array('avia-custom', 'avia-layout');
        return $excluded;
    }

    Regards,
    Ismael

    #309063

    Topic: layerslider

    in forum Enfold
    stevemulisa
    Participant

    i moved domain, and now my slide are crushing, ive update all my links, but when im hitting like 25 slides my advanced layer slider is not loading anymore, it is loading blank, and when i m trying to preview i m getting
    Warning: Illegal offset type in isset or empty in /home/cdcccca1/public_html/wp-includes/post.php on line 1078

    please assist

    #308947

    Hey!

    In the functions.php file, this one:

    Regards,
    Josue

    #308648

    In reply to: Ajax portfolio

    Hey!

    Thank you for using Enfold.

    If you want to add a pagination on top of the portfolio grid element, edit config-templatebuilder > avia-shortcodes > portfolio.php. Find this code on line 373:

    $output .= "<div class='{$class} grid-sort-container isotope {$style_class}-container with-{$contents}-container grid-total-{$total} grid-col-{$columns} grid-links-{$linking}' data-portfolio-id='{$container_id}'>";
    

    Replace it with this:

    //append pagination
    			if($paginate == "yes" && $avia_pagination = avia_pagination($this->entries->max_num_pages, 'nav')) $output .= "<div class='pagination-wrap pagination-{$post_type}'>{$avia_pagination}</div>";
    			
    			$output .= "<div class='{$class} grid-sort-container isotope {$style_class}-container with-{$contents}-container grid-total-{$total} grid-col-{$columns} grid-links-{$linking}' data-portfolio-id='{$container_id}'>";

    Cheers!
    Ismael

    This reply has been marked as private.
    #308210

    Hey!

    I posted a temporary fix here: https://kriesi.at/support/topic/conflict-with-enfold-and-seo-yeast-woo-commerce/#post-307331 – just insert the code into the child theme functions.php or enfold/functions.php. I first thought it’s a conflict between woocommerce and yoast seo but in fact it seems to be a bug in the wp seo plugin because any query (blog post query, woocommerce product query, etc) breaks the “seo analysis” function. Older yoast seo versions worked just fine with WooCommerce or blog queries and we didn’t change our theme code and hopefully the yoast team will fix this bug with the next update.

    Best regards,
    Peter

    #307607

    Well, I was able to work on the timeline a bit — back after we had the previous exchange — then the project got put on hold. Now I’m back to working on it and having the same issue again. I tried upping the memory to 256M, but still no luck. I’m also seeing the error again (see below). Any other suggestions?

    Memory size of 41943040 bytes exhausted (tried to allocate 260935 bytes) in /data/23/3/90/15/3416504/user/3809111/htdocs/wp-content/themes/enfold/css/dynamic-css.php on line 754

    http://skidrow.org/history-timeline-timeline/

Viewing 30 results - 15,331 through 15,360 (of 16,892 total)