Forum Replies Created
-
AuthorPosts
-
Hey sgrobert!
There must be a plugin conflict with the theme. Please deactivate all plugins, see if the issue goes away. Activate the plugins again one at a time.
Regards,
IsmaelDecember 13, 2013 at 8:26 am in reply to: Enfold: How to change DATE FORMAT for Multi-author blog archive #199787Hi bvalliance!
You can do that on Settings > General > Date Format, select custom then add this format M j, Y.
Best regards,
IsmaelHi MtnStreamGroup!
1.) What do you mean by automatic year php? Is this a code that you add on the footer? Please post it here.
2.) Go to Enfold > Footer > Copyright. Place the [nolink] tag.
3.) Edit footer.php, find this code on line 115:
</div> <!-- ####### END SOCKET CONTAINER ####### --> </footer>
You can manually place the second logo on top of it.
Regards,
IsmaelHey!
Change the color of the bold font using this:
.main_color b { color: red; }
And the links using this:
.main_color a { color: black; }
Regards,
IsmaelHey!
I applied the background image again on Global Settings. Please add this on your custom.css or Quick CSS:
.ls-inner { -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-repeat: no-repeat; }
Cheers!
IsmaelHi!
Place it on http://naturaintegrativehealth.com/wp-content/themes/enfold/pdf folder. You can create a pdf folder if it doesn’t exist then add the pdf file there. Use Josue’s code:
<a href="http://naturaintegrativehealth.com/wp-content/themes/enfold/pdf/sample.pdf">Download Sample</a>
Cheers!
IsmaelHey!
Hmm.. Maybe you just need to remove browser cache then reload the page a few times. Test it on another browser.
Regards,
IsmaelHey!
You can use this instead:
#layer_slider_1 { position: relative; margin-top: -88px; }
Regards,
IsmaelHi!
Can you please give us a link to the page with the gallery?
Best regards,
IsmaelDecember 12, 2013 at 10:31 am in reply to: Where are the page title and breadcrumbs in the header? Breadcrumbs not visible. #199426Hey!
Add this on your custom.css or Quick CSS:
.title_container { display: block; }
Best regards,
IsmaelHi!
Please add this on your custom.css or Quick CSS:
#main { position: relative; top: -88px; } .header_bg { opacity: .5; filter: alpha(opacity=50); }
Regards,
IsmaelHey,
You can add a unique selector for each Avia Elements. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_theme_support('avia_template_builder_custom_css');
Edit any avia elements like Text Block then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-textblock”.
You can add something like this on your custom.css or Quick CSS:
.avia_textblock.awesome-textblock p { background: blue; padding: 10px; font-size: 20px; }
Regards,
IsmaelsHi!
1.) I’m sorry but I didn’t notice the link when I first check your inquiry. Did you set 100% on the Global Settings > Slider Width? Turn on the Responsive option then specify the screen width on Responsive under and Layers Container.
2.) Please elaborate this “font style doesn’t look as it’s supposed to be (i.e. bold)”. A screenshot will help.
3.) I don’t see the slice of background on the right when I check the site.
Regards,
IsmaelHey!
Please don’t set a Background image on Global Settings. Set the background image on each slide, look for Slide options > Image. I added a background image on the first slide. You can do the rest.
Cheers!
IsmaelDecember 12, 2013 at 9:48 am in reply to: Removing specific portfolio items from portfolio grid #199400Hi!
You can do what Josue instructed. Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 658:
$query = array( 'paged'=> $page, 'posts_per_page' => $params['items'], 'post_type' => $params['post_type']);
Add the post__not_in parameter plus the posts id that you want to remove on the portfolio grid. As example, remove the “Cascade House” and the “The Natai” entry using this:
$query = array( 'paged'=> $page, 'posts_per_page' => $params['items'], 'post_type' => $params['post_type'], 'post__not_in' => array( 17,62 ));
If you can’t find it, you can add this on functions.php:
function custom_post_grid_query( $query, $params ) { $query['post__not_in'] = array( 17,62 ); return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
Cheers!
IsmaelDecember 12, 2013 at 9:19 am in reply to: limit portfolio navigation to a single category in single item view #199393Hi!
No, it doesn’t work like that. It will only navigate posts or portfolio items which share the same category. You can create a unique category for portfolio items then add it on items with category 1, category 2 and category 3.
Best regards,
IsmaelHey!
I think you’re using the Layer Slider. You can edit the layer then go to Attributes panel. Add a unique css class selector, example “awesome-layer”. Apply the font on Quick CSS:
.awesome-layer { font-family: 'Raleway', sans-serif !important; text-transform: capitalize !important }
You can use media queries to change the font size on smaller screens:
@media only screen and (max-width: 767px) { .awesome-layer { font-size: 13px; } }
Best regards,
IsmaelHi!
I checked the search form and it is working properly. You just need to add this on Quick CSS:
.flex_column.av_one_fourth.first.avia-builder-el-5.el_after_av_one_half.column-top-margin { z-index: 999; }
Best regards,
IsmaelHi!
The theme location name is “avia”.
//ADD LOGIN LINK TO MENU add_filter('wp_nav_menu_items', 'voodoo_loginout_link', 10, 2); function voodoo_loginout_link($items, $args) { if( $args->theme_location == 'avia' ) { $voodooredir = htmlspecialchars($_SERVER['REQUEST_URI']); $loginoutlink = wp_loginout($voodooredir, false); return $items . "<li> $loginoutlink </li>"; } return $items; }
Cheers!
IsmaelHey!
Can you please give us a link to the website? Please download the theme again on your themeforest account then override the existing one via FTP. Watch this video: https://vimeo.com/channels/aviathemes/67209750
Best regards,
IsmaelHey smlsit!
That is not possible at the moment. You can only change the footer widgets on Appearance > Widgets > Footer columns. You would need to hire a freelance developer to add a new footer on the theme.
Best regards,
IsmaelDecember 12, 2013 at 8:39 am in reply to: Broken : Post publish/update, prettyPhoto w/ pages, and ALE stripping code. #199380Hey!
This is an example of the code for opening an html or a website on lightbox:
<a href="https://kriesi.at/support/topic/broken-updates-prettyphoto-with-pages-and-ale-stripping-code?iframe=true" rel="prettyPhoto">Open This Topic on a Lightbox</a>
Add the “?iframe=true” at the end of the url. Don’t forget the rel=”prettyPhoto” attribute.
Cheers!
IsmaelHi!
Sure, you can edit the post then look for Layout > Sidebar Setting > choose a widget area. You can create a custom widget area on Appearance > Widgets > Enfold Custom Widget Area.
Cheers!
IsmaelHi!
Please try to reset the permalink settings.
1.) Login to the WordPress Dashboard
2.) Click of Settings on the menu on the left hand side.
3.) Click on Permanlinks under Settings.
4.) Remember which setting it is set on now. (If you are using a custom structure, copy or save the custom structure somewhere.)
5.) Select Default
6.) Click on Save Changes
7.) Change it back to the setting it was on before you selected Default. (Put the custom structure back if you had one.)
8.) Click Save ChangesBest regards,
IsmaelHey theworldawaits!
Please refer to this link: https://kriesi.at/support/topic/download-links-inside-the-lightbox/
Cheers!
IsmaelHey!
You can change all the thumbnail sizes on functions.php, find these line of codes:
$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']['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); // images for fullscreen masonry $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,
IsmaelHi!
Please edit config-woocommerce > config.php, find this code:
$avia_config['imgSize']['shop_thumbnail'] = array('width'=>120, 'height'=>120);
Replace it the width and height:
$avia_config['imgSize']['shop_thumbnail'] = array('width'=>300, 'height'=>300);
Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Remove browser cache then reload the page.
Regards,
IsmaelHi Glyphism!
We need to see the actual website so that we can inspect it. We don’t know the CSS changes that you did on the website.
Best regards,
Ismael -
AuthorPosts