Forum Replies Created
-
AuthorPosts
-
Hi,
You can use the Product Variations: http://docs.woothemes.com/document/product-variations/
Regards,
Ismael
June 21, 2013 at 5:28 am in reply to: Unlinking the links of the Enfold WooCommerce Dropdown #125841Hi,
Not sure if this is the one you’re looking for. Add this on your custom.css or Quick CSS. This will disable the link.
.cart_list.product_list_widget li a {
cursor: default;
pointer-events: none !important;
}Regards,
Ismael
Hi,
Can you give us a link to your website?
You can upload an image using the Image element under Media Elements tab if you are using the Advance Layout Editor. You can also use the default Add Media button on top of the editor.
Regards,
Ismael
June 21, 2013 at 5:15 am in reply to: Background colour of text block and image change on hover #125389Hi,
You can switch the Advance Layout Editor to debug mode. This way you will see the actual shortcode below the Avia Builder. Edit functions.php then 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";
}Go to your Advance Layout Editor and scroll below to see the actual shortcode.
Regards,
Ismael
Hi,
When editing a post, go to Visual mode then look for the Magic Want or Insert Shortcode button.
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS to adjust the width.
#menu-item-2350 > .avia_mega_div {
width: 1024px;
}You might need media queries to adjust the width on different resolutions.
@media only screen and (min-width: 768px) and (max-width: 1024px) {
#menu-item-2350 > .avia_mega_div {
width: 700px;
}
}Hi,
Please add this on your custom.css or Quick CSS
#top input[type="text"] {
margin-bottom: 0;
}
.iphorm-inner.iphorm-inner-1 > br {
display: none;
}Regards,
Ismael
Hi,
Did you change anything on the CSS? You’re mega menu seems to be jumping on random places.
Add this on your custom.css OR Quick CSS
menu-item-4611 > .avia_mega_div {
right: -40px !important;
}
#menu-item-4343 > .avia_mega_div {
right: -100px !important;
}Regards,
Ismael
Hi,
You can use this on your custom.css or Quick CSS
.archive .big-preview.single-big {
display: none;
}Regards,
Ismael
Hi,
Please remove browser cache then hard refresh the page. Maybe a cache issue.
Regards,
Ismael
Hi,
What do you mean for the whole slider?
The purpose of the code is to move the position of the caption inside the Easy Slider.
Regards,
Ismael
June 21, 2013 at 4:22 am in reply to: How to remove a link to the original image from a featured image? #125719Hi,
What type of Blog style do you have? You can find the settings on Enfold > General Settings > Blog Style.
You can add this on your custom.css Or Quick CSS
.big-preview.single-big a, .small-preview {
pointer-events: none;
cursor: default;
}Regards,
Ismael
Hi,
Please use get_sidebar not dynamic sidebar. We are calling the file sidebar-archive.php not the registered widget area called archive-sidebar.
Please read the instructions carefully.
This works properly on my end. It eliminates all of the query to other sidebars and create a unique one for use in the archive page only.
Regards,
Ismael
Hi,
Read about the requirements on using pretty permalinks here. http://codex.wordpress.org/Using_Permalinks
Regards,
Ismael
Hi,
You can create a Custom Widget on Appearance > Widget then use the Text Widget. Insert the HTML codes there. Apply the custom widget on all pages.
Regards,
Ismael
Hi,
You can’t switch to the Standard editor when you are using the Advance Layout Editor, you will the content. When editing a post, go to Visual Editor then look for the Magic Wand or Insert Shortcode button.
Regards,
Ismael
Hi,
Go to config-templatebuilderavia-shortcodes team.php, find this code
if($name)
{
$output.= "<h3 class='team-member-name' property='v:name'>{$name}</h3>";
}Replace it with:
if($name)
{
$output.= "<h4 class='team-member-name' property='v:name'>{$name}</h4>";
}Regards,
Ismael
Hi,
Please follow this link, look for Nick’s instruction.
https://kriesi.at/support/topic/youtube-icon
The process is a bit complicated right now.
Kriesi said he will make it possible to add your own icons on future updates.
Regards,
Ismael
Hi,
You need the target property.
<a href="http://www.urlhere.com" target="_blank">Click here</a>
Regards,
Ismael
Hi,
Yes, I think it is the table press. It is not responsive. You might need to use Media Queries on custom.css.
Why do you need the plugin? You can achieve the same layout with the Table element.
Regards,
Ismael
Hi,
It is a bit complicated. You should probably use the Full Width Slider.
You can try this
@media only screen and (max-width: 767px) {
.ls-wp-fullwidth-container {
height: 300px !important;
}
.ls-wp-container {
height: 300px !important;
width: 100% !important;
}
.ls-inner {
width: 100% !important;
height: 300px !important;
}
.ls-layer.ls-active > .ls-bg {
height: 300px !important;
margin-top: -150px !important;
}
}Regards,
Ismael
Hi,
Check if you have the proper file permission on cpanel.
http://www.siteground.com/tutorials/cpanel/file_permissions.htm
Edit framework > php > class-breadcrumb.php, find this code
'show_home' => __( 'Home', $textdomain ),
Regards,
Ismael
Hi,
Please override the theme files via FTP. Maybe you accidentally remove something.
Try to revert back to default permalink settings. You should read about permalink settings on http://codex.wordpress.org/Using_Permalinks, look for .htaccess.
Regards,
Ismael
-
AuthorPosts