Viewing 30 results - 8,731 through 8,760 (of 10,095 total)
  • Author
    Search Results
  • #224123
    srubens
    Participant

    Hi

    The Product Descriptions have disappeared from all of the products in Woocommerce. That is, they are still in the back end/admin panel but are not showing up in the tabbed section on the site.

    I think they may have disappeared when I was adjusting the settings for the Column and Product Count in Woocommerce.

    Can someone please help me with this? I can’t give you a link to the site because it is not live yet.

    My installs are as follows:
    WordPress 3.8.1 using Enfold 2.5.2.
    bbPress by The bbPress Community version 2.5.3,
    Delightful Downloads by Ashley Rich version 1.3.4,
    Regenerate Thumbnails by Viper007Bond version 2.2.4,
    WooCommerce by WooThemes version 2.1.2

    chartier
    Participant

    Could you add an option, probably to the post editing Layout panel, to hide the featured image so it doesn’t show at the top of the post? I want to add featured images to all my posts so their thumbnails show up in various places, such as a block of blog posts on my landing page or in the You Might Also Like section at the bottom of posts. But I don’t always want those images appearing at the top of the post itself. Sometimes the images simply aren’t large or wide enough, other times they just kinda get in the way.

    Thanks for any consideration.

    #223805

    MISSING PRODUCT DESCRIPTIONS

    Hi

    I am not sure if this is to do with the theme update but now my Product Descriptions have disappeared from all of the products in Woocommerce.

    I think it happened when I was adjusting the settings for the Column and Product Count in Woocommerce.

    Can someone please help me with this. I can’t give you a link to the site because it is not live yet.

    I have installed WordPress 3.8.1 and using Enfold 2.5.2. My installs are as follows:

    bbPress by The bbPress Community version 2.5.3,
    Delightful Downloads by Ashley Rich version 1.3.4,
    Regenerate Thumbnails by Viper007Bond version 2.2.4,
    WooCommerce by WooThemes version 2.1.2

    Hi,

    For now until support yet to respond or acknowledge for the first time, I am just going to use the below thus removing the effects which is not what I wanted and the issue is not resolved :

    .grid-image.avia-hover-fx {
    opacity: 1;
    }

    Please respond or acknowledge someone will be looking into this?

    I found that on mobile version the menu doesn’t exit too when the above issue is happening and actually the above doesn’t actually solve the issue since people cannot navigate to the pages on mobiles.

    I therefore think something is cause these effects / scripts to malfunction whether it’s the menu on mobile or the portfolio grid or post slide effects when viewed as general public but once logged in as admin they work fine.

    Thanks

    • This reply was modified 12 years, 1 month ago by pureoption.
    #223718
    Camineet
    Participant

    Hi, I am having trouble getting the links to point to the articles.

    I have this setup:
    – Page (called ‘offender register’), it has 5 avia blocks each containing content element ‘blog posts’. This is pulling in entries from a custom taxonomy.

    This works well.

    However, then I click on any post I get a 404.

    This is my cpt and taxonomy setup code:

    <?php  //HATE Reports
    
    // Register Custom Post Type
    add_action('init', 'reports_init');
    
    function reports_init() 
    {
        //Labels for cusotm post type.
        $report_labels = array(
            'name' => _x('Reports', 'post type general name'),
            'singular_name' => _x('Report', 'post type singular name'), 
            'all_items' => __('All Reports'),
            'add_new' => _x('Add new report', 'report'),
            'add_new_item' => __('Add new report'),
            'edit_item' => __('Edit report'),
            'new_item' => __('New report'),
            'view_item' => __('View report'),
            'search_items' => __('Search in report'),
            'not_found' =>  __('No report found'),
            'not_found_in_trash' => __('No report found in trash'), 
            'parent_item_colon' => ''
        );
        
    //Arguments
        $args = array(
            'labels' => $report_labels,
            'public' => true,
            'publicly_queryable' => true,
            'show_ui' => true, 
            'query_var' => true,
            'rewrite' => true,
            'capability_type' => 'post',
            'hierarchical' => false,
            'menu_position' => 5,
            'supports' => array('title','editor','thumbnail','comments', 'report-cat', 'author'),
            'taxonomies' => array( 'report-cat', 'post_tag' ),
            'has_archive' => 'report'
        ); 
        register_post_type('report',$args);
    }
    
    //Add new taxonomy upon WordPress initialization
    
    function report_create_taxonomies() 
    {
        // Report Categories
        register_taxonomy('report-cat',array('report'),array(
            'hierarchical' => true,
            'label' => 'Report Categories',
            'singular_name' => 'Report Category',
            'show_ui' => true,
            'query_var' => true,
            'rewrite' => array('slug' => 'report-cat', 'with_front' => FALSE),
            'capability_type' => 'post',
        ));
    }
    add_action( 'init', 'report_create_taxonomies', 0 );
    
    //////////////
    ?>

    Permalink setting are set to:
    Post name http://localhost/sample-post/

    I can reach the archive page for the cpt categories via:
    http://localhost/report-cat/racism/
    http://localhost/report-cat/antisemitism/
    http://localhost/report-cat/anti-gay/
    http://localhost/report-cat/misogynistic/
    http://localhost/report-cat/the-r-word/

    This is an example link given above the wp editor for a post in the anti-gay category:
    http://localhost/report/he-is-a-fag

    I have tried everything to get this to link correctly but am now hairless.

    How can I use CPT with the blog post in the avia builder?

    Thanks

    AlexKK
    Participant

    Hello everyone

    New user here and I had a couple of questions.
    I’m trying to design a page for photographers. The idea is that each photographer has his own subpage, showing a few portfolios. Each portfolio consists of some photos and a description.

    I understand that for each photographer I should make a portfolio item for each one of his galleries, assign them to the same category, then create a page to display the portfolios

    So I wanted to ask, could I have the preview image (“featured image”) link to a slideshow lightbox instead of linking to a portfolio page with thumbnails? I mean viewing the whole gallery in the lightbox, not just the featured image. The latter already exists as an option.

    Secondly, can I direct portfolios to source the images from a nextgen gallery instead of the media outlet provided by wordpress?

    Thanks in advance

    Hey jmikhail!

    Trying using this plugin to regen your thumbnails and see how that effects things: http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Best regards,
    Devin

    #223671

    Hi mmichael1991!

    The theme doesn’t resize the base image, it does however create thumbnails and alternates sizes for the theme to use in other places.

    Cheers!
    Devin

    #223621

    Ok. The gray area is removed but text is not centered under thumbnail. See matt-morse.com

    #223541

    Dear Yigit

    Thank your for the answer.

    Change the new settings in WooCommerce > Settings > Catalog.
    Regenerate thumbnails.
    loading new different times, empty cache, tray other browsers

    but nothing happend! on the costumer site!

    the product picture here looks too big: http://natur-duft.ch/start/duftsets/duftset-lavendel/ I like it smaller
    the original picture is 300×137 px. I like a square product picture with resized picture without cutting

    the cataloge picture here looks also too big: http://natur-duft.ch/produktkategorie/naturduefte/duftsets/
    I like here also a square catalog picture with resized picture without cutting

    this exp. looks good, but is it e square picture!: http://natur-duft.ch/start/duftsets/duftset-primatao/

    thanks for your answer

    Daniel

    #223538
    mattmorse
    Participant

    Please view my website at http://www.matt-morse.com.

    I am struggling with my LayerSlider and its appearance on all different devices. Do you know which settings I can adjust to make it like the LayerSlider on the Enfold demo? That displays exactly the same on all devices.

    Also, directly under the LayerSlider on my homepage are the Recent Blog Posts, where I chose to have the thumbnail and title only. Is there a way I can remove that empty gray space to the right of the thumbnail and just center thumbnail over the title instead?

    Thanks for all your great help. This is an excellent support forum.

    #223491

    Hey Daniel!

    Please try setting Katalogbilder to 136x136px and Einz. Produktbild to 660x660px in WooCommerce > Settings > Catalog. Then regenerate thumbnails http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Yigit

    #223484

    Hey!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    #top .portolio-preview-list-image { pointer-events: none!important; }

    Regards,
    Yigit

    #223449

    Topic: Styling is gone!

    in forum Enfold
    asarran
    Participant

    all of a sudden social icon menu is overlapped with pages menu and portfolio does not display categories – http://www.albertosarrantonio.com/
    and overal styling seems gone – gallery thumbnails showing blue edge – http://www.albertosarrantonio.com/portfolio-item/a-tribute-to-marilyn/

    please help!
    thanks

    #223224

    Hi!

    Can you please give us a link to the actual portfolio page? How did you end up with that thumbnail? It should be resize to occupy the space of the grid container.

    Best regards,
    Ismael

    #223206

    Hi generatrorassociates!

    1.) Please create a menu on Appearance > Menu then set it as Enfold Main Menu on Theme Options.

    2.) Please edit functions.php, find this code on line 94:

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

    Replace it with:

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

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

    If that doesn’t work, please use this plugin to manually resize the images: http://wordpress.org/plugins/simple-image-sizes/

    Cheers!
    Ismael

    #223176

    Hi!

    I added the video shortcode on a Text Block element and it works. Please add this on Quick CSS:

    .wp-video {
    min-height: 500px;
    margin-bottom: 50px;
    }

    Check it here: http://withthisring.org/test-page/

    Cheers!
    Ismael

    #223172

    Hi!

    I just noted that you have a very old version of Enfold (1.3.1), please update to the latest one (2.5).

    Best regards,
    Josue

    #223085

    Topic: ! H E L P !

    in forum Enfold
    Aerny
    Participant

    H E L P !

    Now the entire site is gone!! I just typed in a shortcode to show thumbnails (without mistakes!) and the entire site went blank!

    I don’t know what to do now. Can someone help? The site was almost finished . . . :-\

    arnoldveeman.com/testsitenieuw

    • This topic was modified 12 years, 1 month ago by Aerny.
    #223084

    In reply to: linking page content

    H E L P !

    Now the entire site is gone!! I just typed in a shortcode to show thumbnails (without mistakes!) and the entire site went blank!

    I don’t know what to do now. Can someone help? The site was almost finished . . . :-\

    #223053
    This reply has been marked as private.
    #223052

    Thanks for this. You say to use the theme’s shortcode instead. But, that shortcode doesn’t allow for any customization of the initial image that shows (the poster image), does it? Is there a way to do that?

    #222914

    In reply to: Feature Image

    Hi!

    The only way I know of to do it outside of uploading a specific cropped image is: http://wordpress.org/plugins/thumbnail-crop-position/

    Regards,
    Devin

    No unfortunately not. I think there are a few plugins that will re-scan your posts and set featured images based on the first image in the post but I can’t find any off hand. That would probably be your best route.

    I’ve got a couple functions that I’ve used in the past but they set the image on post save and you would still need to go in and re-save the post.

    #222872

    Thanks for your support. I changed the the portfolio items “ajax preview images” to an “image list” (i only have 1 picture anyway). So when I use the ajax portfolio grid on my projects page, I want to disable the lightbox. Is there a line like the following that works w/ the “image list” option?
    .portfolio-preview-image .avia-gallery a { pointer-events: none; }

    Thanks again!

    #222768
    Daniel
    Participant

    Liebes Kriesi Team

    Nutze Enfold mit Woocommerce. Gerne würde ich die Grösse der Bilder der Produkte in WC definieren. Die sichtbare Grösse in der Ansicht des Kunden von “Einzelnes Produktbild” und “Katalogbilder”.

    Habe Simple Image Sizes und Regenerate Thumbnails installiert aber konnte damit nichts ändern…
    Forum durchsucht, nicht klar fündig geworden…

    Ich möchte hauptsächlich, dass Bilder mit NICHT-quadratischem Format automatisch nicht abgeschnitten werden sondern soweit verkleinert werden damit sie in die definierte Bildgrösse hineinpassen.

    Konkret:
    http://natur-duft.ch/start/duftsets/duftset-alles-liebe/ –> Produkt-Bild quadratisch, jedoch nicht abgeschnitten, als ganzes verkleinert
    http://natur-duft.ch/produkt-stichwort/duftset/ –> Katalogbild-Bild quadratisch, jedoch nicht abgeschnitten, als ganzes verkleinert

    Infos zu meiner Quick-CSS:

    #top #main h1 {
    font-size: 23px;
    line-height: 1.1em;
    margin-bottom: 8px;
    }
    #top #main h2 {
    font-size: 22px;
    line-height: 1.1em;
    margin-bottom: 8px;
    }
    #top #main h3 {
    font-size: 20px;
    line-height: 1.1em;
    margin-bottom: 8px;
    }
    .woocommerce-main-image.zoom {
    overflow: hidden;
    }
    .four.units.single-product-main-image.alpha .images a {
    pointer-events: none;
    }

    Einstellungen:
    Woocommerce:
    Katalogbilder: 250×250, nicht beschneiden
    Einz. Produktbild: 350 x 350, nicht beschneiden
    Produktvorschau: 120×120, nicht beschneiden

    Im Simple Image Size sind die Einstellungen gleich!

    Vielen Dank für Eure Hilfe

    Daniel

    This reply has been marked as private.
    pureoption
    Participant

    Hi,

    I updated to wordpress 3.8.1 + Enfold 2.5 and it seems to have caused the portfolio grid thumbnails not to show.

    It’s fine when logged in as admin and view the portfolio page but when in open public viewing logged out of admin the portfolio grid thumbnails do not show.

    Please could you help.

    kind regards

    #222711

    Hi,

    habe unsere Seite nun Online. http://www.prosafe-ms.com
    Ich habe nun das Plugin Nextgen Gallery installiert und eine Galerie erstellt.
    Ich habe die Lightbox deaktiviert bzw. habe no lightbox gewählt und habe bei “Show Advanced Settings”
    folgendes eingetragen: class=’lightbox’ rel=’prettyPhoto[%GALLERY_NAME%]

    Irgendwie funktioniert die Fotogalerie nicht bzw. man sieht nur den Link und keinen Thumbnails. Über dem Link
    kann man auf das “unsichtbare Bild” klicken. Dann öffnet sich die PrettyPhoto Lightbox.
    Sobald ich es auf Lightbox stelle sieht man die Galerie und lässt sich mit dem Lightbox script von
    Nextgen Gallery öffnen.

    die Galerie ist hier: http://www.prosafe-ms.com/fotogalerie/sonnenschutzfolien-bilder

    Hätte jemand eine Idee`?

    Gruß

    • This reply was modified 12 years, 1 month ago by Tacettin.
    #222663

    Hey!

    You could 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 you can use the new space to build your custom layout. I.e. use the gallery shortcode to build the layout/template you requested in your post (select “Use Lighbox” – “No, don’t add a link to the images at all”).

    Best regards,
    Peter

Viewing 30 results - 8,731 through 8,760 (of 10,095 total)