Viewing 30 results - 6,481 through 6,510 (of 10,099 total)
  • Author
    Search Results
  • Hi condonpb!

    You can change that on line 125 in the functions.php file.

    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    

    You may need to regenerate the thumbnails afterwards, http://wordpress.org/extend/plugins/regenerate-thumbnails/.

    Regards,
    Elliott

    #466440

    Hi!

    Changes are done. You need to regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Yigit

    #466348

    Yes, I’m sending you the link in private.
    You can see 10 pictures in gallery, but I want to show the first seven thumbnails.

    Thanks in advance!
    Attila

    #466278

    So basically I am going to check the sizes of the image at my homepage, insert a new row into the functions.php like this:

    $avia_config[‘imgSize’][‘newsthumbnails_homepage’]= array(‘width’=>261, ‘height’=>211 );

    And then regenerate the thumbnails using the WordPress Plugin “Regenerate Thumbnails” ?

    #466108

    Topic: Enfold Gallery

    in forum Enfold
    Edelabarre
    Participant

    I have added a GALLERY into a page, inside of a SINGLE LAYOUT choice.

    I have chosen to view BIG IMAGE with THUMBNAILS below.

    When I visit the page and click on ANY of the images, featured image at the top or a Thumbnail under the BIG IMAGE, the image opens with 2/2 images…which is simply a duplicate image of the image I have clicked on.

    The only way to start the Gallery, like shown in the documentation http://kriesi.at/themes/enfold/shortcodes/gallery/ is to click OUT of that image before seeing the way it should be….a gallery, like….again….how you show it here: http://kriesi.at/themes/enfold/shortcodes/gallery/

    Why are there duplicate images and why doesn’t the gallery act the same way as your demo content here: http://kriesi.at/themes/enfold/shortcodes/gallery/

    Please advise.

    Magnolia
    Participant

    Hi Kriesi,

    I found a bug in the Catalogue-Item, WHEN there is text in “List Item Description” AND i’ve choosen the image-option “open bigger version of thumbnail…” – see the screens below!
    https://www.dropbox.com/sh/kpxdl6z8dvxj1ft/AACOSQoDXzUeP6buI240WLUqa?dl=0
    If I choose “no link”-option at the image, it’s okay…

    Please have a look!

    #465939

    Yes, using the default gallery shortcode. I would like to show seven small thumbnail pictures in preview, but when a bigger picture is opened, 10 pictures will be available to see…
    I’m sending you the link in private wher you can see 10 pictures in 2 lines.

    #465734
    nbknbk
    Participant

    Hi,

    I’m using simple gallery (not masonry) with small thumbnails. I want to show the thumbnails of the first seven picture in one line (gallery columns is set to 7). How can I modify the php/css to list only 7 pics in preview?

    Thanks in advance!

    #465710

    In reply to: Post Format: Link bug

    No reply yet… Great.

    No response in the forum yet. Want to reproduce the problem? Here:
    1. Create a post with a Link Post Format
    2. Add a word with non-latin characters
    3. Make that word a link.
    4. Create a page that displays posts.
    5. Make sure you are using small thumbs.

    The Enfold theme isn’t using the get_url_in_content function, just like the twentyfifteen theme is using. Somehow, the thumb’s URL is getting screwed.
    I would have fixed the problem myself, but I can’t find where loop-index.php is calling the Link Post Format.
    Please tell me where can I find the Link Post Format code for small thumbnail link, and I will fix it myself.

    function twentyfifteen_get_link_url() {
    	$has_url = get_url_in_content( get_the_content() );
    
    	return $has_url ? $has_url : apply_filters( 'the_permalink', get_permalink() );
    }
    endif;
    • This reply was modified 10 years, 9 months ago by roy_eyal.
    #465590
    jpattersonphoto
    Participant

    I have tried altering settings and styles of the masonry gallery. I have tried disabling all plugins. I have tried multiple browsers (all on a Windows 7 PC). And I have tried reinstalling the Enfold theme, but my masonry gallery does not load properly. Sometimes if loads just captions, but other times it loads small thumbnails that don’t align properly. Any help? Thank you!

    bluelotus
    Participant

    How do I customize the Gallery layout to display the thumbnails on the left of the main image?
    Currently the only option on the Gallery Style menu are “Small Thumbnails”, “Big image with thumbnails below”, and “Big image only, other images can be accessed via lightbox”

    The idea is to have an area on the homepage featuring upcoming events, and as the visitor hovers over the thumbnails on the bottom, the main gallery image displays that image. Look at gallery_events.jpg for example of mockup.

    #465210

    In reply to: Get Tab content

    I finally made it.

    <?php 
    $print_og = true;
    if(is_product() && $print_og){
    	// get featured image url
    	$feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
    	// get post content
    	$content_post = get_post($post->ID);
    	$product_content = $content_post->post_content;
    	// extract the tab content
    	$pos1 = strpos($product_content, "[av_tab title='DESCRIPTION'");
    	$product_content = substr($product_content, $pos1);
    	$pos2 = strpos($product_content, "[/av_tab]");
    	$len1 = strlen($product_content) - $pos2;
    	$len1 = strlen($product_content) - $len1;
    	$product_content = substr($product_content, 0, $len1);
    	$pos3 = strpos($product_content, "]") + 1;
    	$product_content = substr($product_content, $pos3);
    	// reformat the content: remove newline, html tag, double quote, etc
    	$product_content = str_replace('"', "'", $product_content);
    	$product_content = trim(preg_replace( "/\s+/", " ", $product_content));
    	$product_content = strip_tags($product_content);
    ?>
    <!-- Custom Facebook OG Data Added By Alex -->
    <meta property="og:title" content="<?php echo get_the_title(); ?>" />
    <meta property="og:type" content="product" />
    <meta property="og:url" content="<?php echo get_permalink(); ?>" />
    <meta property="og:image" content="<?php echo $feat_image; ?>" />
    <meta property="og:site_name" content="<?php echo get_bloginfo('name'); ?>" />
    <meta property="og:description" content="<?php echo $product_content; ?>" />
    <!-- End of custom OG Data -->
    <? } ?>
    #465082

    Topic: Get Tab content

    in forum Enfold
    boscotwcheung
    Participant

    I am working on a woocommerce site with enfold. And I am trying to a facebook sharing button to each product page. I am trying to add OG meta content to the page header of the product page for facebook sharing. I can get the product name, image, url. However, I want to add og:description content but I don’t know how to do that. I put my product description into the enfold “tab” element. I created 2 tab pages. One is product description and the other one is shipping info. My question is how can I get the content from one of the tab page in the header.php?

    
    <?php $print_og = true; ?>
    <?php if(is_product() && $print_og){ ?>
    <?php $feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?>
    <!-- Custom Facebook OG Data Added By Alex -->
    <meta property="og:title" content="<?php echo get_the_title(); ?>" />
    <meta property="og:type" content="product" />
    <meta property="og:url" content="<?php echo get_permalink(); ?>" />
    <meta property="og:image" content="<?php echo $feat_image; ?>" />
    <meta property="og:site_name" content="<?php echo get_bloginfo('name'); ?>" />
    <meta property="og:description" content="how can i put product description here???" />
    <!-- End of custom OG Data -->
    <? } ?>
    
    • This topic was modified 10 years, 10 months ago by boscotwcheung.
    #464905

    Hi,

    I have the same problem. I’m using simple gallery (not masonry) with small thumbnails. I want to show the thumbnails of the first seven picture in one line (gallery columns is set to 7). How can I modify the php/css to list only 7 pics in preview?

    Thanks in advance!

    #464762
    Shirtcliffe
    Participant

    I would like to change the colour of the currently white caption text box on hover over of the Masonry gallery. How would I change the colour of the overlay box and caption text?

    The overlay does not quite line up with the thumbnail size on the right of a few images in the gallery. Can I fix that?

    Some of thumbnails also seem to repeat downwards crating a thin coloured line in the thumbnails, is there a reason it would not fit properly and needs to repeat or do I need to size the images differently?

    Thank so much for your quick support. Really great team!!!

    #464642

    In reply to: Post Format: Link bug

    That plugin screws the all the website from RTL to LTR, so I had it removed.

    But why does the language matter?
    There’s a list of posts.
    JUST CLICK ANY OF THE POST THUMBNAILS PLEASE – you’ll see for yourself.

    http://www.afikim38.com/index/contractors/page/2/

    Screenshot:
    Screenshot

    #464517

    Geeeeeez :/

    Again:
    The problem is caused by a DIFFERENT width (innerWidth) of browser area. When there is lot of content, there is a scrollbar and obviously the innerWidth is smaller than without scrollbar (in my case with scrollbar 960px, without scrollbar 977px). When switching between categories, the scrollbar appears and disapears and the ABSOLUTE POSITION OF EACH THUMBNAIL is miscalculated because of different widths (960px vs 977px).

    Please, close this topic :(

    p.s. i can connect with you via skype and share my screen to show you what I mean

    • This reply was modified 10 years, 10 months ago by iheartwine.
    #464511

    In reply to: Post Format: Link bug

    What? no no no…
    Why are clicking on the sidebar?
    I said every thumbnail on each POST is linking to a 404!
    It’s every featured images on the RIGHT.
    Please click every post thumbnail, on you’ll see you’re getting a 404.

    #464503

    In reply to: Post Format: Link bug

    Hi!

    sorry, but as I already said the thumbnail on the page provided is linking fine for me:

    It does not link for me to any other page than to the one I posted in private content in my previous post.

    Best regards,
    Andy

    #464427

    Topic: abnormal gallery

    in forum Enfold
    paulchiao
    Participant

    please refer to the page in private content

    the gallery display abnormally

    although we used Regenerate Thumbnails , but it still abnormally displayed

    #464372
    tmkhc
    Participant

    Hello,

    I’m having a problem with the portfolio gallery thumbnail columns with the Ajax Portfolio.
    All of my portfolio item settings are set to 6 (default setting for your demo), but I’m having some empty spaces.
    I’m trying to have 3 thumbnails in each row, but changing the thumbnail column number doesn’t seem to change anything.

    Please could you help me solve this problem?

    Thank you in advance,

    Tommy

    #464370
    brooks
    Participant

    Hi

    I wanted to add a mute/unmute option to a youtube video. I found the easy video player and am having problems.

    1. Loaded a plugin (Easy Video Player WordPress Plugin) that works through shortcodes.
    2. On a clean WordPress Install on the default wordpress theme (Twenty Fourteen, Twenty Fifteen) the plugin works beautifully.
    3. On a clean WordPress Install with the Enfold theme (latest version) the shortcode does nothing. I tried adding it into a “code block”, “text block” & WordPress default editor. Nothing. The code is been rendered inside HTML source. Please see below.:
    5. When I test again under a default WordPress theme it works perfectly.
    6. Tested on two separate WordPress Installation on two separate servers. It defiantly points to enfold.

    YES the theme folder is renames aswell as the child, but this is not the problem as on a clean WordPress Install with just the Enfold plugin and the Easy Video Player WordPress Plugin it does exactly the same.

    I can see the javascript been rendered inside the source and zero javascript errors been returned. The problem I see is that Enfold does not allow for external shortcodes to be loaded or it loads it but does not let the javascript run. I even loaded a PHP post & pages plugin to inject PHP code that explicits fires the shortcode method echo do_shortcode(‘[fwdevp preset_id=”0″ video_path=”C0DPdy98e4c”]’); and it to does nothing. Yes I tried a test echo which worked telling my the PHP script is running fine.

    This is the code I captured from the source showing the javascript been injected.:

    <section class=”av_textblock_section” itemscope=”itemscope” itemtype=”https://schema.org/CreativeWork”><div class=”avia_textblock ” itemprop=”text”><script type=”text/javascript”>

    FWDEVPUtils.onReady(function()
    {
    FWDEVPlayer.useYoutube = ‘yes’;
    FWDEVPlayer.videoStartBehaviour = ‘stop’;
    new FWDEVPlayer(
    {instanceName:’fwdevpPlayer0′,
    parentId:’fwdevpDiv0′,
    mainFolderPath:’http://localhost/mystagingone/wp-content/plugins/fwdevp/content&#8217;,
    videoSourcePath:’C0DPdy98e4c’,
    posterPath:”,skinPath:’minimal_skin_dark’,
    displayType:’responsive’,
    facebookAppId:’213684265480896′,
    rightClickContextMenu:’developer’,
    addKeyboardSupport:’yes’,
    autoScale:’yes’,
    autoPlay:’no’,
    loop:’no’,
    maxWidth:800,
    maxHeight:500,
    volume:0.8,
    backgroundColor:’#000000′,
    posterBackgroundColor:’#0099FF’,showControllerWhenVideoIsStopped:’yes’,
    showVolumeScrubber:’yes’,
    showVolumeButton:’yes’,
    showTime:’yes’,
    showYoutubeQualityButton:’yes’,
    showFacebookButton:’yes’,
    showEmbedButton:’yes’,
    showFullScreenButton:’yes’,
    repeatBackground:’yes’,
    controllerHeight:41,
    controllerHideDelay:3,
    startSpaceBetweenButtons:7,
    spaceBetweenButtons:9,
    scrubbersOffsetWidth:4,
    mainScrubberOffestTop:14,
    timeOffsetLeftWidth:5,
    timeOffsetRightWidth:3,
    volumeScrubberWidth:80,
    volumeScrubberOffsetRightWidth:0,
    timeColor:’#888888′,
    youtubeQualityButtonNormalColor:’#888888′,
    youtubeQualityButtonSelectedColor:’#FFFFFF’,showLogo:’yes’,
    hideLogoWithController:’yes’,
    logoPosition:’topRight’,
    logoPath:’http://localhost/mystagingone/wp-content/plugins/fwdevp/content/logo.png&#8217;,
    logoLink:’http://www.webdesign-flash.ro/&#8217;,
    logoMargins:5,embedAndInfoWindowCloseButtonMargins:0,
    borderColor:’#333333′,
    mainLabelsColor:’#FFFFFF’,
    secondaryLabelsColor:’#a1a1a1′,
    shareAndEmbedTextColor:’#5a5a5a’,
    inputBackgroundColor:’#000000′,
    inputColor:’#FFFFFF’,openNewPageAtTheEndOfTheAds:’no’,
    adsVideoSourcePath:’none’,
    adsButtonsPosition:’right’,
    adsPageToOpenURL:’http://www.webdesign-flash.ro&#8217;,
    adsPageToOpenTarget:’_blank’,
    adsThumbnailPath:”,
    skipToVideoText:’You can skip to video in: ‘,
    skipToVideoButtonText:’Skip Ad’,
    timeToHoldAds:4,
    adsTextNormalColor:’#777777′,
    adsTextSelectedColor:’#FFFFFF’,
    adsBorderNormalColor:’#444444′,
    adsBorderSelectedColor:’#FFFFFF’
    })
    });
    </script><div id=”fwdevpDiv0″></div>
    </div></section>

    Test youtube video.:

    Shortcode:

    [fwdevp preset_id=”0″ video_path=”C0DPdy98e4c”]

    #463922

    Hey!

    I’m not sure if this is going to work but please try to regenerate the thumbnails. You can use one of these plugins:

    https://wordpress.org/plugins/force-regenerate-thumbnails/
    https://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    #463893

    In reply to: Post Format: Link bug

    Hey there
    I think that maybe you got it wrong.
    every thumbnail links to a broken link:
    http://www.afikim38.com/index/contractors/

    Every href points to:
    http://www.afikim38.com/index/engineers/<href=”PAGELINK&#8221; target=”_blank”>PAGE TITLE
    instead of PAGELINK

    And it all happens because the post format is Link.

    JMDP
    Participant

    PS: Sorry, wrong link, the right one is as follows: http://rentonfrance.com/villa-cypress-point/

    Hi,
    Enfold

    1- How to modify a post “side thumbnails width to make it more visible. Most of people do not see it.
    It is very “nice looking” but it would be great to increase width. I have it on various sites (3) with the same reaction.

    2- How to add a “Next” & “Previous” button or link on posts?

    Thank’s a lot for your help.
    JM

    JMDP
    Participant

    Hi,
    Enfold

    1- How to modify a post “side thumbnails width to make it more visible. Most of people do not see it.
    It is very “nice looking” but it would be great to increase width. I have it on various sites (3) with the same reaction.

    2- How to add a “Next” & “Previous” button or link on posts?

    Thank’s a lot for your help.
    JM

    #463685

    Hello,
    I returned to the subject and tried again the above modifications. I could not achieve the desired result. I do not know whether I described the problem. Well, I would like to open a link to an external URL (eg http://sferio.pl/…swidnica.html or virtual tour on Google Drive) in a new tab by clicking on the thumbnail portoflio.
    Please help and detailed instructions.
    Greetings.
    Bartek

    #463560

    Hey!

    Please add following code to Quick CSS as well

    .news-headline {
      font-size: 14px;
    }

    and then refer to my post here – https://kriesi.at/support/topic/latest-news-widget-thumbnail-picture-is-too-small/#post-356895

    Cheers!
    Yigit

    #463447

    Hey Shawnlimws!

    “Authorization Required”
    Please go to WooCommerce > Settings > Products > Display and change product image sizes as needed and then regenerate them using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Yigit

    #463323

    Because i’m still modyfying it. For your testing purpose I have reverted the changes. Please, click on ALL > E-commerce > ALL

    Like I already noticed, the problem is probably with innerWidth of the window. With scrollbar it has on my screen 1663px, without 1680px.
    When there is no scrollbar, it calculates the width and then fullfill the area with thumbnails. But suddenly scrollbar appears and instead of 1680 it goes 1663. And Instead of absolute position left: 420, should be 415,75 px

    Windows 7, each browser.

    • This reply was modified 10 years, 10 months ago by iheartwine.
Viewing 30 results - 6,481 through 6,510 (of 10,099 total)