Forum Replies Created
-
AuthorPosts
-
Hello drmoody!
You can add this on your custom.css or Quick CSS to move the logo. :)
div .logo { float: left; position: absolute; left: 0; top: 20px; }
Adjust the top position.
Cheers!
IsmaelHello!
Please remove browser cache then reload the page a few times. The code Yigit provided should disable all lightbox features within the theme.
Cheers!
IsmaelHey!
Can you give us a link to your website with the registration page? Check if the settings on Settings > General > Membership is enabled.
Regards,
IsmaelHey!
Please add this on your custom.css or Quick CSS:
.main_color .pricing-table>li:nth-child(even) { border-bottom: 1px solid #e1e1e1; border-top: none; } .main_color .pricing-table>li:nth-child(odd) { border-top: none; border-bottom: 1px solid #e1e1e1; }
Cheers!
IsmaelHi Alex!
Maybe you can add a large image as the Color Section’s background. Can you post the wave images here? A mockup of what you’re trying to do will help a lot.
Regards,
IsmaelHey fshn2day!
You can edit includes > loop-search.php to modify the search results page. :)
Cheers!
IsmaelSeptember 28, 2013 at 8:03 am in reply to: White line between slideshow and color section – how to remove? #167461Hello fshn2day!
You can add this on your custom.css or Quick CSS to remove the white line below the slider:
.avia-shadow { border: none; }
Cheers!
IsmaelSeptember 28, 2013 at 8:02 am in reply to: How to add social media buttons to the footer and add second menu to footer #167460Hi fshn2day!
If you want another menu on the footer area you can go to Appearance > Menus panel. Find Menu Settings then enable Enfold Footer Menu. To add social icons, edit footer.php, find this code:
wp_nav_menu($args); echo "</div>";
Below, add this code:
$social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => ''); echo avia_social_media_icons($social_args);
Add this on your custom.css or Quick CSS to move the social icons:
#socket .social_bookmarks { position: relative; left: 50px; }
Yes, you can edit header.php to add the Google Translate.
Best regards,
IsmaelSeptember 28, 2013 at 7:51 am in reply to: Unwisely deleted unwanted pages with various layouts – I want them now – how to? #167455Hey fshn2day!
What layouts did you accidentally deleted? You can edit header.php if you want to add elements on the header. You can only have one type of header on Enfold > Header > Header Type.
Cheers!
IsmaelHello!
@bertusdeleeuw: Please give us a link to your website, we need to inspect it. How did you add the text blocks?Regards,
IsmaelHello!
Looks like you manage to fill in the accordion element. Please increase the wordpress php memory limit. Edit wp-config.php file, add this code:
define('WP_MEMORY_LIMIT', '128M');
Cheers!
IsmaelHey!
Please flush the permalink settings a few times. Change the permalink settings, save then change it again. Delete the old checkout page and then create a new one. Insert the woocommerce checkout shortcode [woocommerce_checkout]. Go to WooCommerce > Settings > Pages panel, under “Shop Pages” deselect the Checkout Page then set it again.
Cheers!
IsmaelHey uattah!
You can create a page then insert the bbpress registration shortcode: [bbp-register]
You can also go to Appearance > Widgets. Insert the (bbbPress) Login Widget. Place the url of the newly created “Register” page on the “Register URI:” field. Please refer to this link: http://codex.bbpress.org/shortcodes/
Cheers!
IsmaelSeptember 28, 2013 at 2:50 am in reply to: Shortcode für die Accordions / Toggle innerhalb einer Tabelle #167404Hello HappyBeagle!
Please switch your theme to debug mode. Edit function.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 will be able to see the actual shortcode below the builder. Shortcodes can be combine like this example.
[av_table purpose='pricing' caption='' custom_class=''] [av_row row_style='avia-heading-row'][av_cell col_style='']This is a Heading![/av_cell][/av_row] [av_row row_style='avia-pricing-row'][av_cell col_style='']$250[/av_cell][/av_row] [av_row row_style=''][av_cell col_style=''] [av_toggle_container initial='0' mode='accordion' sort=''] [av_toggle title='Toggle 1' tags=''] [av_toggle title='Toggle 2' tags=''] [/av_toggle_container] [/av_cell][/av_row] [/av_table]
Best regards,
IsmaelHello!
You can hide the url using goo.gl or tinyurl.com. What part of the shop page is broken?
Best regards,
IsmaelSeptember 27, 2013 at 9:35 am in reply to: "Enable Lightbox" not appearing in Woocommerce/Settings/General (Enfold theme) #167072Hi!
You can add this on your custom.css or Quick CSS to disable the lightbox on product image.
.woocommerce-main-image.zoom { pointer-events: none; }
Regards,
IsmaelHi!
The Enfold demo is not yet updated, it is using version 1.8.4. Please download the latest version which is 2.2.
Cheers!
IsmaelSeptember 27, 2013 at 9:21 am in reply to: Transparancy of content background, custom mouse-over and no menu borders? #167068Hi!
1.) Can you please post the image again? It is not working.
2.) Unfortunately, the grayscale hover effect can’t be easily implemented. Maybe this plugin will help: http://wordpress.org/plugins/grayscale/
Cheers!
IsmaelSeptember 27, 2013 at 9:19 am in reply to: Error message in child theme:parent theme is required in the child theme. #167067Hello!
You should place enfold parent folder and enfold child theme folder inside wp-content/themes folder. Is that what you did?
Regards,
IsmaelHello uattah!
Did you change the permalink settings prior to the issue? Have you tried deactivating all your plugins?
Please give us a link to your website.
Regards,
IsmaelHello 12Switch!
Can you give us a link to the website? The link http://waterlandfilm.12switch.nl/ is not working.
Best regards,
IsmaelHello!
The thumbnail sizes are specified on functions.php.
$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
Regards,
IsmaelSeptember 27, 2013 at 9:11 am in reply to: Is there any way to have featured images applied automatically by category? #167061Hi kirkmc!
I’m not sure if that is possible. You need to manually upload a category image as featured image for each post.
Best regards,
IsmaelSeptember 27, 2013 at 9:06 am in reply to: Blog Page to show Excerpt or First 150 chars of post #167059Hello!
Edit a post, click on Screen Options. Enable the Excerpt option. You can manually specify an excerpt on the Excerpt field. Another method is to use the <!- more –> tag. http://en.support.wordpress.com/splitting-content/more-tag/
Please don’t select a static page on Settings > Reading. Set “Frontpage displays” > Your latest Post. I know this is not related to the Blog Post element on the Avia Builder but on Settings > Reading find “For each article in a feed” option, enable “Summary”.
Regards,
IsmaelSeptember 27, 2013 at 8:50 am in reply to: Solution to disable Next/Prev portfolio navigation doesn't work #167056Hello!
Switch to Language B then place the css again. You can also add the code on custom.css to affect all languages.
Cheers!
IsmaelSeptember 27, 2013 at 5:41 am in reply to: Changing 'empty' table cell colors, Icons, Shortcode and $ #167017Hi summerg!
1.) How do I change the icon that is shown in the button row? I would like a checkmark instead of a heart.
Edit the Button Row then scroll below, select the icon that you want.2.) How do I change/enlarge the “$” in my pricing row? It’s too small.
Add this on your custom.css or Quick CSS:.pricing-table li.avia-pricing-row .currency-symbol { font-size: .9em; top: 0; }
3.) Can you give us a link to the page please?
Cheers!
Ismael -
AuthorPosts