Forum Replies Created

Viewing 30 posts - 46,831 through 46,860 (of 67,591 total)
  • Author
    Posts
  • in reply to: Blurry Thumbnails Enfold Latest News Widget #508848

    Hi!


    @hunter74
    : I’m sorry but it’s not possible to delete a pre-set thumbnail size with a function. You can only remove the registered thumbnail size on functions.php file. Look for this block of code:

    $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'=>845, 'height'=>684 );						// 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'=>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
    

    EDIT: Actually, you can try this in the child theme’s functions.php file:

    function ava_image_sizes() { 
    	add_image_size('masonry', 0, 0);
    	add_image_size('magazine', 0, 0);
    	add_image_size('widget', 0, 0);
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    Set the width and height to 0. Register all the thumbnails that you want to remove inside the ava_image_sizes function.

    Regards,
    Ismael

    in reply to: Add site title to the right of the logo #508845

    Hey kcimme!

    Thank you for using Enfold.

    You can follow the solution here: https://kriesi.at/support/topic/adding-text-to-header-2/#post-503992

    Best regards,
    Ismael

    in reply to: Postslider.php: Show only the parent category-name #508844

    Hi!

    You can use this function: https://codex.wordpress.org/Template_Tags/wp_list_categories#Display_Categories_Assigned_to_a_Post

    Set the “depth” parameter to 1 to display only top level categories. The example on the link should work in your case.

    Cheers!
    Ismael

    Hey!


    @118group
    : What is the issue with the slider exactly? Can you please create another thread with the page url? A screenshot will help as well.

    Best regards,
    Ismael

    in reply to: Shrinking Header no longer working with logo size #508837

    Hi!

    It’s actually the same transition as the default. You can check an example here: http://kriesi.at/themes/enfold/

    Best regards,
    Ismael

    in reply to: Responsive image like in One Page Portfolio Demo #508829

    Hi!

    What is the screen resolution of the mobile device? Try to adjust the code:

    @media only screen and (max-width: 767px) {
    .avia-android #advanced_menu_toggle {
    top: 27px;
    right: 50px;
    }}

    Adjust the “right” position value.

    Best regards,
    Ismael

    in reply to: creating a home page grid with multiple sized images #508821

    Hey!

    1.) I checked the Settings > Permalink panel and the structure is set to “/about” which is an invalid permalink. We set it back to the default “/%postname%”. http://69.89.31.117/~hoseagru/test/a-really-simple-entry/

    2.) Can you please provide a screenshot of this issue? The masonry looks OK when I check the test page.

    3.) Place the masonry element outside of the 1/1 column layout element. Or set the “Size Settings” to Perfect Manual Masonry. You can read the note under the settings.

    Manually control the height and width of entries by adding either a “landscape” or “portrait” tag when creating the entry. Elements with no such tag use a fixed default size, elements with both tags will display extra large

    4.) There is no option for that, unfortunately. Can you please provide a screenshot of the hover effect that you want? You can contact codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    in reply to: Sorting category links missing on portfolio page #508809

    Hey!

    I checked the home page and the sorting links for the portfolio grid are there:

    All / Graphic Design / Logo Design / Software / Web Design & Development
    

    Please hard refresh the page.

    Cheers!
    Ismael

    • This reply was modified 10 years, 7 months ago by Andy.
    in reply to: How to fit the images in a correct width and height #508808

    Hi!

    I’m sorry, I completely forgot about the link. Don’t worry. Instead of the grid row element, use the Masonry Gallery element under Media Elements panel. Add the images to the gallery. Edit each image then look for the “Custom Link” field. You can add the url of the page where you want the image to link when clicked. Set the gallery “Columns” option to 4, disable the “Image Title and Caption” then set the “Image Link” to the second option.

    Cheers!
    Ismael

    in reply to: Icons / Social Icons Missing on Second Domain #508802

    Hey!

    Try to replace the .htaccess file with this:

    <FilesMatch "\.(ttf|otf|woff|eot)$">
    <IfModule mod_headers.c>
    	Header set Access-Control-Allow-Origin "*"
    </IfModule>
    </FilesMatch>

    It should fix the error in the console:

    Font from origin 'http://www.gelbett.ch' has been blocked from loading by Cross-Origin Resource Sharing policy: The 'Access-Control-Allow-Origin' header contains multiple values '*, *', but only one is allowed. Origin 'http://flexside.ch' is therefore not allowed access.
    

    Best regards,
    Ismael

    Hi!

    The images in these pages are loading properly now:

    http://rentonfrance.com/proprietes-en-location/
    http://rentonfrance.com/villa-okio-la-croix-valmer/

    Please remove browser cache or hard refresh the page before testing them.

    Cheers!
    Ismael

    Hi!

    Again, I’m sorry for the inconvenience. We restored the site. You can now login to the page. We’ll give you an update after we check the current issue.

    Regards,
    Ismael

    in reply to: facebook share problem #508790

    Hi!

    What if you delete the actual image (portraits_alphacoffee.jpg) in the wp-content/uploads/2015/07 folder? Maybe, it will catch the new image if the previous image doesn’t exist.

    Best regards,
    Ismael

    in reply to: Trying to Understand Portfolios – tutorials not enough #508789

    Hi!

    You can use this plugin to convert posts to a custom post type (portfolio): https://wordpress.org/plugins/convert-post-types/

    Regards,
    Ismael

    in reply to: Login and Register #508787

    Hey!

    There are available plugins specifically for this purpose so you won’t have to create it manually. For example, you can try this: https://wordpress.org/plugins/ciusan-register-login/

    You can then use the plugin’s shortcode in the functions.php file:

    // add something
    add_action('avia_meta_header', function() {
    	echo do_shortcode("[ciusan_register]");	
    });

    Cheers!
    Ismael

    in reply to: Responsive Page to Mobile Devices #508779

    Hey!

    This is an old issue with the “Blank – No Header, No Footer” template. Please update the theme to the latest version.

    Try this in the Quick CSS field:

    #top.avia-blank {
        width: 100% !important;
        display: block;
    }
    
    #top.avia-blank #wrap_all {
        display: block;
    }

    Did you modify the theme files?

    Cheers!
    Ismael

    Hey!

    Try to use the video tag in a code block. Something like this:

    <video controls poster="IMAGE URL HERE">
      <source src="http://vrworldsummit.s3.amazonaws.com/mysessionforVRWSld.mp4" type="video/mp4">
      Your browser does not support the video tag.
    </video>

    Add the image url in the poster attribute.

    Cheers!
    Ismael

    in reply to: Tab title click event handlers #508774

    Hey!]

    I’m sorry but I’m not sure how the script is suppose to work. Can you please create a html test page so that we can get a better idea? What is the selector that use in the click event? If you’re trying to target the tab title, try this for example:

    div[data-fake-id="#asphalt-pigments-tab"]
    

    Regards,
    Ismael

    in reply to: Portfolio categories not showing right postst/acting werid #508771

    Hi!

    I checked the page and when I clicked “Stedenbouw” for example, I can only see 4 portfolio items. I think that’s about right. It doesn’t reload or anything. Please try to hard refresh the page or remove browser cache.

    Cheers!
    Ismael

    in reply to: Special Heading Shortcode Malfunction #508269

    Hi!

    Since you’re using the default editor, please insert the special heading without the apostrophe. When you’re done look for the actual shortcode in the editor. It will look like this:

    [av_heading tag='h3' padding='10' heading='Im a water person' color='' style='' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    

    Look for the heading attribute or parameter (heading=’I am a water person’). Add the apostrophe html entity number manually:

    [av_heading tag='h3' padding='10' heading='I&#3 9;m a water person' color='' style='' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    

    In order to display the actual entity number in this thread, I have to add a space between the integer “3” and “9”. You have to remove that space. http://www.ascii.cl/htmlcodes.htm

    Again, we are very sorry for the inconvenience.

    Cheers!
    Ismael

    in reply to: Trying to Understand Portfolios – tutorials not enough #508266

    Hi!

    Portfolio items are basically posts but in the theme you can use the Portfolio Grid element to showcase these posts in a different way. I’m talking about the Portfolio Grid element and the AJAX Portfolio. You can find an example here, click one of the items: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/

    Best regards,
    Ismael

    in reply to: Template Builder malfunction> #508262

    Hey!

    The html codes are still there. Please remove all text including the html codes then replace it with a text placeholder like “This is a text etc blah blah”. Let us know if the issue persists.

    Cheers!
    Ismael

    in reply to: Blog Post Grid Layout not rendering on translated page #508259

    Hey!

    Thank you for using Enfold.

    What happens when you deactivate the The Events Calendar plugin? This seems to be a conflict between the two plugins. If possible, please contact the plugin authors as well.

    Regards,
    Ismael

    in reply to: Customise menu #508257

    Hey!

    You can try this:

    #menu-item-4003, #menu-item-4004 {
        float: right;
    }

    Cheers!
    Ismael

    in reply to: More then five products per row #508255

    Hi!

    Add this code inside the css media query above:

    .responsive #top #main .products .product {
        margin: 0 auto !important;
        float: none;
    }

    Regards,
    Ismael

    in reply to: facebook share problem #508251

    Hey!

    I’m sorry but I can’t find the page (http://www.wiwaldi.at/portraits/karina-und-daniel-fasch/) in the Pages panel. Can you please provide the exact url to the page editor?

    Regards,
    Ismael

    in reply to: Video not working #508249

    Hey!

    I’m not really that familiar with the subject. Maybe, you can find a video converter? This might help:http://www.wondershare.com/pro/free-video-converter.html

    Regards,
    Ismael

    in reply to: One-page navigation anchor positions when using submenu #508237

    Hi!

    Alright. Please hard refresh the page every time you test the codes. Post the ftp details here. We would like to check it.

    Regards,
    Ismael

    in reply to: Tablet Portrait Columns & Ajax Portfolio Slideshow #508204

    Hi!

    EDIT: I tried the extra steps and I was able to reproduce the issue. I hope the code above will fix it. Most users will not click the “X” button and move forward to the next item or click another portfolio item. There’s even a chance that he will go to another tab minimize the browser and will never notice the bug is actually there. My point is, reproducing the bug is almost impossible unless you’re the developer of the site. Anyway, at least we confirm that the bug is actually there. I really hope the code above will fix it.

    EDIT: The code fix the current issue but it creates another. The current slideshow is stuck. We’ll ask Kriesi again to look into this.

    Regards,
    Ismael

    in reply to: Tablet Portrait Columns & Ajax Portfolio Slideshow #508202

    Hey!

    I actually modified the code above. Is that the one you used? Please test it again. Remove browser cache then reload the page. I tried to login to the dashboard but the previous login credentials are not working. Please post the new login credentials so that we can check it. Thank you for your patience.

    Best regards,
    Ismael

Viewing 30 posts - 46,831 through 46,860 (of 67,591 total)