Forum Replies Created
-
AuthorPosts
-
July 9, 2013 at 3:48 pm in reply to: Remove default sidebar in woocommerce single product page #128680
Hi,
You can change the widgets on Appearance > Widgets > Single Product Pages widget area.
Regards,
Ismael
Hi,
The links gave me errors.
You can target a specific page by their unique body id selector. Using Chrome, you can right click the page, Inspect Element. Look for the body class.
We can use page-id-2251 to target the page. For example, if we want to change the header background, we can do something like this on custom.css or Quick CSS:
.page-id-2251 #header_main {
background: red;
}We can use this same technique to target other elements within a specific page.
Regards,
Ismael
Hi,
Look for the Color Section elements below the “About” button and Testimonials.
Regards,
Ismael
Hi,
Create a portfolio item, look for Screen Options. Enable the Avia Layout Builder.
Regards,
Ismael
Hi,
What type of Blog Style do you have?
Please give us a link to your website.
Regards,
Ismael
Hi,
Increase the wordpress php memory limit, see if it fixes the issue.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
Increase the php memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Deactivate plugins, see if it works.
Regards,
Ismael
Hi,
You can try this
.header_color .header_bg {
background-color: rgba(0,0,0,.9);
color: white;
}
.header_color .main_menu ul:first-child > li > a {
color: white;
}
.header_color .main_menu ul:first-child > li.active-parent-item > a {
color: gray;
}Regards,
Ismael
Hi,
You can add this on quick CSS or custom.css
h3 {
color: #441646 !important;
}Regards,
Ismael
July 9, 2013 at 7:19 am in reply to: CSS Animations on Home are not triggered by 'avia_animate_when_almost_visible' #128592Hi,
Your website loads fine. What css animations do you want to remove?
Regards,
Ismael
Hi,
Can you give us a link to your website? The category selector works fine on our end.
Disable all your plugins, see if it works.
Regards,
Ismael
Hi,
Can you give us links to your websites? It is working fine on our end.
Regards,
Ismael
Hi,
Download the latest version of Enfold again, which 1.7. Install it on WordPress 3.5 or higher. Increase the wordpress php memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
I think you can’t upload a png format image because they will be converted to jpg. The workaround is to upload PNGs then replace the actual converted image with the original PNG image. Can you give us a screenshot of what you want to do with the portfolio grid?
Regards,
Ismael
Hi,
Download the latest version of Enfold again, which 1.7. Install it on WordPress 3.5 or higher. Increase the wordpress php memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hey,
You can try this.
/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
@media only screen and (max-width: 870px) {
#top .avia-slideshow-button.avia-button-light {
padding: 3px 8px;
font-size: 9px;
}
}Regards,
Ismael
Hi,
You might need to add !important to make it work on quick css.
#top .main_menu .menu li > a {
padding-top: 20px !important;
}Regards,
Ismael
Hi,
First, delete or remove all Layer Slider elements on the entire website.
Edit functions.php, find this code
require_once( 'config-layerslider/config.php' ); //layerslider plugin
Replace it with
//require_once( 'config-layerslider/config.php' ); //layerslider plugin
Then go to wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > locate slideshow_layerslider.php and remove it.
Regards,
Ismael
Hi,
Inspect the Home menu, look for the menu id. Add this on your custom.css
#menu-item-755 {
text-indent: -9999px;
background: url(IMAGE URL) no-repeat center;
width: 200px;
}The menu id of my home menu is 755, it might differ from yours. Adjust the width according to the image that you’re going to use.
Regards,
Ismael
Hi,
Can you give us a link to your website?
I tried Devin’s code on my end but it doesn’t hide the logo when the scroll starts.
Regards,
Ismael
Hi,
Do you have Enfold 1.7? Your wordpress version should be 3.5 or higher.
Allocate more php memory.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
Did you assign categories to the portfolio items? Sometimes, users confused post and portfolio item categories. They are two different thing.
Regards,
Ismael
July 8, 2013 at 5:49 am in reply to: Remove header but keep the fixed navigation bar that contains social icons #128192Hi,
You can add this on your custom.css or Quick CSS
#header_main {
display: none;
}
#header_meta {
min-height: 0;
}
.fixed_header.social_header #main {
padding-top: 0;
}Regards,
Ismael
Hi,
Yes, there is a preview at the very top of Enfold > Styling. For example, change the background of the header then scroll back to the top, you’ll see the preview header.
Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CSS
.single .main-title {
display: none;
}Regards,
Ismael
Hi,
What do you mean by get the same one page portfolio with the same slider?
You can use the Advance Layout Editor to create numerous kinds of page templates.
Regards,
Ismael
Hi,
search results for
Edit framework > php > function-set-avia-frontend.php
if($wp_query->found_posts > 1)
{
$output = $wp_query->found_posts ." ". __('search results for:','avia_framework')." ".esc_attr( get_search_query() );
}
else
{
$output = $wp_query->found_posts ." ". __('search result for:','avia_framework')." ".esc_attr( get_search_query() );
}And find this
if(!empty($_GET['s']))
{
$output = __('Search results for:','avia_framework')." ".esc_attr( get_search_query() );
}Open search.php, find this code
echo "<h4>".__('New Search','avia_framework')."</h4>";
echo "<p>".__('If you are not happy with the results bellow please do another search','avia_framework')."</p>";On loop-search.php, find these
<?php
if(get_post_type() !== "page")
{
if ( get_comments_number() != "0" || comments_open() )
{
echo "<span class='text-sep'>/</span>";
echo "<span class='comment-container minor-meta'>";
comments_popup_link( "0 ".__('Comments','avia_framework'),
"1 ".__('Comment' ,'avia_framework'),
"% ".__('Comments','avia_framework'),'comments-link',
"".__('Comments Disabled','avia_framework'));
echo "</span>";
}
}Regards,
Ismael
-
AuthorPosts