Forum Replies Created
-
AuthorPosts
-
Hi,
You can add a request here: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Ismael
Hi,
Are you talking about the Big Green Tokyo Image? It loads fine on my end. Maybe, a slow internet connection?
Regards,
Ismael
Hi,
Edit functions.php, add this code:
add_theme_support('avia_template_builder_custom_css');
This will allow you to add unique css selector for each avia elements.
Go to the Advance Layout Editor, insert a button then add a unique css selector “orange-button” for example.
Edit custom.css or Quick CSS, add this code:
.orange-button a {
background-image: none !important;
background-color: #cc3300 !important;
border-color: #cc3300 !important;
color: white !important;
}
.orange-button a:hover {
background-image: none !important;
background-color: white !important;
border-color: white !important;
color: #242424 !important;
}Regards,
Ismael
Hey,
Glad you figured it out. :)
To learn more about the theme, you can watch videos here: https://vimeo.com/channels/aviathemes
Cheers,
Ismael
Hi,
Can you give us a link to the website? What is the previous thread url?
Regards,
Ismael
Hi,
Edit config-templatebuilder > aviashortcodes > slideshow.php, find this code on line 503:
$html .= "<a href='#prev' class='prev-slide' >".__('Previous','avia_framework' )."</a>";
$html .= "<a href='#next' class='next-slide' >".__('Next','avia_framework' )."</a>";Replace it with:
$html .= "<a href='#' class='prev-slide' >".__('Previous','avia_framework' )."</a>";
$html .= "<a href='#' class='next-slide' >".__('Next','avia_framework' )."</a>";Regards,
Ismael
Hi,
First, switch the Advance Layout Editor to debug mode.
Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add the code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}You’ll be able to see the actual shortcode below the Advance Layout Editor. Paste the code above on the shortcode field.
Regards,
Ismael
July 24, 2013 at 10:48 am in reply to: Featured Image works on every page except my "Frontpage" #130571Hi,
I updated the page and the main post slider started showing the images again. I configure the Offset Number to 1, I think the issue is about the post slider pulling posts from the same categories. I’m not sure about this but it seems that the problem is solve.
Check the page: http://up-shift.net/upshifttest/
Regards,
Ismael
Hi,
You can try 1024. The Layers Container option will constrain all elements inside a specific width and the slider will create a centered inner area to place your content into that.
Regards,
Ismael
Hi,
Can you please recreate the Easy Slider from scratch? I can easily add 3 or more images on the Easy Slider on my end without it stopping or causing issues.
Please increase the wordpress php memory limit:
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
Open includes > admin >register-portfolio-options.php, find this code:
Tangerine'=>'Tangerine',
'Terminal Dosis'=>'Terminal Dosis',
'Tenor Sans'=>'Tenor Sans',
'Varela Round'=>'Varela Round',
'Yellowtail'=>'Yellowtail',Add this code below:
'Maven Pro'=>'Maven Pro',
You can now use the font on your custom.css or Quick CSS
/*default*/
h1, h2, h3, h4, h5, h6 {
font-family: 'Maven Pro', sans-serif;
font-weight: 600; }Regards,
Ismael
Hi,
You can see all image thumbnail size on functions.php
/*
* 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']['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']['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
}The one use for the portfolio featured image is this:
$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 sliderRegards,
Ismael
Hi,
Please add this on your custom.css or Quick cSS
html {
background: white !important;
}Neat website. :)
Regards,
Ismael
Hi,
I’m afraid you have to redo the site from scratch since Enfold is a far different theme than Propulsion. So much has change on the templates and the actual framework.
You can find tutorial videos about Enfold here: https://vimeo.com/channels/aviathemes
Regards,
Ismael
Hey,
Glad the solution worked. The template-builder is a bit tricky. Please try this:
Edit template-builder.php, remove everything then paste this code: http://pastebin.com/QDsWKWPP
Regards,
Ismael
July 24, 2013 at 9:45 am in reply to: Issues with "pre" tagged content placed in tabs using the safari browser #131084Hi,
Please switch your Advance Layout Editor to debug mode. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}You’ll be able to see the actual shortcode below the Advance Layout Editor. Please increase the php memory limit to 128M or higher.
Edit wp-config.php, add this code
define('WP_MEMORY_LIMIT', '128M');
Regards,
Ismael
July 24, 2013 at 9:38 am in reply to: Featured Image works on every page except my "Frontpage" #130570Hi,
Please send the login details on ///.
Include the word “Kriesi” on the subject. Add the link of this thread on your email.
Regards,
IsmaelHi,
I visited the website, looks like you manage to use Media Queries to adjust the menus.
Regards,
Ismael
Hi,
Can you give us a link to the website? No, it is not a known issue. How did you add the button?
Regards,
Ismael
July 24, 2013 at 2:48 am in reply to: margin or padding for all contents including the header, title, and sliders #129371Hi,
Have you tried using the Enfold > Styling > Use stretched or boxed layout? > Boxed Layout? I think it will solve all your problem. The layer slider width is too big, I don’t understand why you need 5000px on the slider.
Regards,
Ismael
July 24, 2013 at 2:05 am in reply to: Dropdown navigation suddenly became huge and spreads across the page #130536Hey,
Upgrade to Enfold 1.8.2.
Did you add any plugins prior to this issue? Please deactivate them, see if the slider works.
Increase your php memory limit to 128M or higher. Make sure you’re using wordpress version 3.5 up.
Edit wp-config.php, add this code:
define(‘WP_MEMORY_LIMIT’, ‘128M’);
Regards,
Ismael
July 23, 2013 at 6:33 am in reply to: Woocommerce – hide top right cart icon unless logged in… #130685Hi,
You can specify the Layers Container width on LayerSlider WP > Slides > Global Settings > Basic > Layers Container. Specify the width (px).
(px) This feature is useful if you are using a full-width slider and you want to avoid stretching your layers across the full viewport horizontally. Just specify a custom width in pixels, and the slider will create a centered inner area to place your content into that. Note that this feature is working only with pixel-positioned layers, but you can still use the value '50%' if you want centered positions.
Regards,
Ismael
Hi,
Sorry for that. You should leave the theme version number or you’ll lose the theme settings configuration. We’ll update it for you.
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
#prayerengine_notifyme {
min-width: 13px;
min-height: 13px;
}Can you give us a screenshot of what you see on IE?
Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CSS
.ls-playvideo {
display: none;
}Regards,
Ismael
Hi,
I visited your site ht tp://flop side.tech core.com.au/~jbolger/word press/, the menu looks ok. I tested it on this site and the you can see that the menu looks fine. http://responsinator.com/?url=http%3A%2F%2Fflopside.techcore.com.au%2F~jbolger%2Fwordpress%2F
Regards,
Ismael
-
AuthorPosts