Forum Replies Created
-
AuthorPosts
-
Hi!
1. Try adding this to the bottom of your functions.php file.
function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );2. Add this in front of your CSS to target just your homepage.
.homeFor example.
.home .news-excerpt { font-size: 12px !important; }Best regards,
ElliottHey!
Send us a WordPress login.
Cheers!
ElliottHey!
Open up /enfold/functions.php and change lines 109 – 110 from this.
$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 sliderTo this.
$avia_config['imgSize']['entry_with_sidebar'] = 'full' // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= 'full' // images for fullsize pages and fullsize sliderAs for the lightbox your blog images are already linking to the post. Do you mean you wish to make it so the single post view featured image does not open in lightbox?
Best regards,
ElliottHi!
I don’t see the 1px jump on my end. What version of Firefox are you using and what operating system?
Regards,
ElliottHey Raphep!
How are you tracking this? What is the code your using?
Best regards,
ElliottHey!
I checked your site again but it looks like you removed the AJAX cart and set the add to cart button to link directly to your cart page. You have to enable the AJAX cart for that to work.
Regards,
ElliottHey!
In /enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 576 you can see we set the context to “image_url”.
$markup = ($post_type == 'attachment') ? avia_markup_helper(array('context' => 'image_url','echo'=>false, 'id'=>$entry['ID'], 'custom_markup'=>$this->atts['custom_markup'])) : avia_markup_helper(array('context' => 'entry','echo'=>false, 'id'=>$entry['ID'], 'custom_markup'=>$this->atts['custom_markup']));That’s the conditional your looking for. You could change that to “significantURL” and then add a new case in this file, https://kriesi.at/support/topic/masonry-gallery-structured-data-bug/#post-379035.
Cheers!
ElliottHi!
@Windsong, You most likely need to update the theme. See here for updating via FTP, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.Best regards,
ElliottHey Brett!
Yes it feels like the server is hanging up on something. After it was cached though it loaded within 2-3 seconds on each refresh.
I would try contacting your hosting provider about this to see if they have any idea.
Also be sure to deactivate all plugins while testing.
Best regards,
Elliott-
This reply was modified 11 years ago by
Elliott.
Hey jaroljmek!
You’ll want to look over the gravity forms documentation and support, http://www.gravityforms.com/.
I’ve never used it before but if you read their documentation then you’ll figure out how to insert the forms.
Best regards,
ElliottHi masyogie!
Take a screenshot and highlight what your trying to do so we can get a better idea.
We will have to use CSS to style it.
Regards,
ElliottHi havi!
Add this to your custom CSS.
.header-bg { opacity: 0 !important; }That will keep it transparent even when scrolling.
Regards,
ElliottHi pixup!
We can give you CSS to use to change the logo position on separate pages. Send us a link to the pages you want to change it on and we’ll take a look.
Best regards,
ElliottHi gyverchang!
Your adding this to your custom CSS correct?
#top .aviaccordion-preview { bottom: 0; height: 30%; width: 100% !important; }That’s why it is looking weird. Remove that and it should display like in our demos.
Cheers!
ElliottHi!
Try adding this to your custom CSS.
#footer .textwidget a { display: inline !important; }If that’s not correct then send us a WordPress login and we’ll see what we can do.
Best regards,
ElliottJanuary 14, 2015 at 11:59 pm in reply to: Avoid using the google analytics tracking code for admin users #379802Hey Zohar!
You could try this.
add_action( 'init', 'enfold_customization_remove_ga', 20 ) function enfold_customization_remove_ga() { if ( is_user_logged_in() ) { remove_action('wp_head', 'avia_print_tracking_code', 100000); remove_action('wp_head', 'avia_print_tracking_code', 100000); } }But overriding the function would work just as well.
Cheers!
ElliottHi p_lo84!
I viewed some of your blog posts but the images were the same size. If you want to change their sizes then open up /enfold/functions.php and you can find the image sizes starting on line 100.
Cheers!
ElliottHi hotspot!
Basically it just means it displays nicely on high resolution devices. You can upload a large logo and it’s size will be truncated to display in your header area so even on high resolution devices the logo image will stay sharp.
As for the example your talking about yes the image will display sharper on high resolution screens.
Best regards,
ElliottHey Zaccc!
Not entirely sure what your trying to do here but if you create a page with a sidebar then you can place a Masonry element inside the page content.
If your trying to create filters in your sidebar then that is going to take a lot of time and code and would have to be considered custom work.
If your trying to display products and filter them by price, etc etc, then we recommend the Woocommerce plugin.
Regards,
ElliottHey Ken!
A different background would be possible. Drag a codeblock element to your page and add this inside.
<style type = "text/css"> html.html_boxed { background: url("YOUR DOMAIN HERE/wp-content/themes/enfold/images/background-images/wood-light.png") repeat scroll center top #342f29 !important; } </style>Getting different color schemes to display would take a lot of time and code though so it would have to be considered custom work.
Cheers!
ElliottHi johanboshoff!
It must be something wrong with that specific slider you have. I created a new one and it’s saving fine. Not sure what it could be.
I would try creating a new one and once you have it completed you can delete the old one.
Cheers!
ElliottHi!
You’ll want to upload a larger image to use there. The image is stretched to fit the full screen size so if a user visits your site on a large monitor then it will look a little pixellated. If you use HD size images though then they will display sharp on pretty much all screen sizes.
Cheers!
ElliottHi awb1!
Your currently using Enfold 3.0.2. Update Enfold to the latest version, 3.0.4, and let us know when your done.
See here for updating, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Cheers!
ElliottHey greengraphicsvienna!
1. Add this to your custom CSS.
.header-bg { opacity: 1 !important; }2. Are you sure you have the LayerSlider set to be responsive in the slider settings? Send us a link and we’ll take a look.
Cheers!
Elliott-
This reply was modified 11 years ago by
Elliott.
January 14, 2015 at 10:13 pm in reply to: Problems in RWD – main menu categories and their submenus #379765Hey ablito!
I’m sorry but I’m not sure I understand. Take a screenshot and highlight what your trying to do so we can get a better idea.
Best regards,
ElliottJanuary 14, 2015 at 10:12 pm in reply to: Correct Picture-Size for featured image in Single Event/Post #379764Hey Rolf!
Your site is loading in 2.8 seconds for me. I suppose you could try reducing the size of your Tsing Tao image a bit more as it’s 130KB and the largest image you have on your page so far. The problem here is probably the amount of images your using so you could also consider removing some of them and placing them on separate pages.
Other than that I would just ignore the pagespeed results.
Regards,
ElliottHi Aleks!
It sounds like your setting the header to be transparent. Set it to no transparency to get the effect your wanting.
If that’s not the problem then send us a link to your page and we’ll take a look.
Best regards,
ElliottHey juliaevemann!
It looks like you forgot to include the link. You can mark your reply as private if you wish.
Be sure to deactivate all plugins while testing.
Regards,
ElliottHey mcginty312!
1. Contact your hosting provider to see if anything happened.
2. Drag a codeblock element to your page and add this inside.
<style type = "text/css"> .content, .sidebar { padding-top: 0px !important; } </style>3. Navigate to Dashboard > Appearance > Menus and click on the dropdown arrow for your link and remove the description.
4. Open up /enfold/config-templatebuilder/avia-shortcodes/gallery.php and change line 207 from this.
$tooltip = $caption ? "data-avia-tooltip-position='bottom' data-avia-tooltip='".$caption."'" : "";To this.
$tooltip = $caption ? "data-avia-tooltip-alignment='bottom' data-avia-tooltip-position='bottom' data-avia-tooltip-class='av-tt-pos-below' data-avia-tooltip='".$caption."'" : "";Best regards,
ElliottHi!
Try adding a codeblock element to your page and then add this inside.
<style type = "text/css"> #top .avia-gallery .avia-gallery-thumb a { opacity: 1; width: 12% !important; } </style>Cheers!
Elliott -
This reply was modified 11 years ago by
-
AuthorPosts
