Forum Replies Created
-
AuthorPosts
-
January 8, 2014 at 4:15 am in reply to: moving the position of the blog tags to under the title #206616
Hi!
Can you please give us the link to the actual page? You can override the css styling using Quick CSS or custom.css.
Regards,
IsmaelHey!
You can use this:
.avia-progress-bar .progressbar-title-wrap { background: red; background: rgba(255, 255, 60, 0.5); }Cheers!
IsmaelHi!
Please try this one:
if( wpmd_is_phone() && is_front_page() ) { $redirect_url = 'http://jonnyfreesh.com/music'; header('Location: ' . $redirect_url ); // Redirect the user }Regards,
IsmaelHey!
Please remove the code then install this plugin: http://wordpress.org/plugins/wp-mobile-detect/
Edit header.php, find this code on line 2:
global $avia_config;On top of it, add this code:
if( wpmd_is_phone() ){ $redirect_url = 'http://jonnyfreesh.com/music'; header('Location: ' . $redirect_url ); // Redirect the user }Remove browser cache then reload the page.
Regards,
IsmaelHi crevlon!
You can change the text color using this:
#top .avia-post-nav { color: red; }Change container background when hovered using this:
#top .avia-post-nav:hover { background: #222; background: rgba(255,50,8,0.5); }This is for the initial background of the navigation:
#top .avia-post-nav { background: blue; background: rgba(255,90,8,0.8); }Best regards,
IsmaelJanuary 7, 2014 at 8:52 am in reply to: Enfold Theme: Advanced layerslider stopped displaying #206199Hi!
Please post the login details here as a private reply. We would like to inspect it.
Best regards,
IsmaelHi!
I don’t see any portfolio entries on the link you posted above. If you want to change the portfolio order by id, you can use this:
function custom_post_grid_query( $query, $params ) { $query['orderby'] = 'ID'; $query['order'] = 'ASC'; return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);Change the order parameter to either ASC (ascending) or DESC (descending). Remove browser cache then reload the page a few times.
Best regards,
IsmaelHi!
Switch to Default Editor then use the shortcode wand there.
Best regards,
IsmaelHi kuanileqa!
I’m not sure if this is going to work but please framework > php > function-avia-set-frontend.php, find the code on line 1066:
$version= $matches['version'][1];Replace it with:
$version= $matches['version'][0];Best regards,
IsmaelHi!
Edit single.php, remove everything then replace it with this code: http://pastebin.com/Vzc73sCc
Best regards,
IsmaelJanuary 7, 2014 at 8:17 am in reply to: Layer Slider Doesn't Stay Responsive when I rotate mobile device #206184Hi!
Can you please give us a link to the actual page with the slider? We need to inspect it. This is why we recommend to hire a freelance developer to fix the issues with the slider.
Regards,
IsmaelHi!
4.) You can use the LayerSlider to replicate the slider with three images on the link you posted.
Regards,
IsmaelJanuary 7, 2014 at 8:10 am in reply to: moving the position of the blog tags to under the title #206181Hi!
Edit includes > loop-index.php, remove everything then replace it with this code: http://pastebin.com/y09HUmP5
Regards,
IsmaelHey!
You can add this on your custom.css or Quick CSS:
#bbpress-forums li { display: block !important; }Cheers!
IsmaelHi!
The login credentials are not working. Like Devin said, Kriesi uses graphic images instead of actual text. It gives you more control over the look of the slider because browsers render fonts differently.
Best regards,
IsmaelHi!
I’m not sure why it doesn’t work for you. Have you tried Peter’s solution here https://kriesi.at/support/topic/iconfont-manager-upload-problem/?
Best regards,
IsmaelHey!
No, it doesn’t affect the sort by category function. It works on my end. Can you please give us a link to the page? Please add it on wp-content/themes/enfold/ functions.php file.
Regards,
IsmaelJanuary 7, 2014 at 5:50 am in reply to: Layer Slider Doesn't Stay Responsive when I rotate mobile device #206125Hi!
Yes, it is not full compatible with the theme and you might need a freelance developer to fix a few layout issues.
Please add this on your custom.css or Quick CSS:
#main { margin-top: -1px; }Best regards,
IsmaelHi vegaspro!
Edit the code that you have a bit. Replace it with:
#header_main .container, .main_menu ul:first-child > li a{ height:150px; line-height: 150px; }Regards,
IsmaelHi!
Go to LayerSlider WP > Global Settings > Basic > set the width of the “Layers Container” and “Responsive under” options.
Regards,
IsmaelJanuary 7, 2014 at 4:11 am in reply to: How to adjust Layerslider timing of layers to synchronise with background image #206106Hey Gillianrose!
Go to LayerSlider WP > Slide > Global Settings > Slideshow > Animate first slide, turn it off. Edit the layer then go to Options > Duration > set the “Transition in” to 0.
Regards,
IsmaelJanuary 7, 2014 at 4:08 am in reply to: Layer Slider Doesn't Stay Responsive when I rotate mobile device #206104Hi!
You can try the RoyalSlider plugin. Hire a freelance developer to make it fully compatible with the theme. Visit http://werkpress.com/.
Regards,
IsmaelHi!
Please refer to this link: https://kriesi.at/support/topic/enfold-portfolio-not-working-after-wordpress-3-8-update/#post-199805
Regards,
IsmaelHi LiveLightCo!
Please use this on your custom.css or Quick CSS:
.bottom_nav_header.social_header .main_menu ul:first-child>li:first-child a { border: none; } .bottom_nav_header.social_header .main_menu ul:first-child>li a { border: none; }Regards,
IsmaelHi!
You can use this on functions.php:
function custom_post_grid_query( $query, $params ) { $query['orderby'] = 'date'; $query['order'] = 'ASC'; return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);Refer to this link for more order parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Regards,
IsmaelHey!
1.) You can create a new shop page then insert the LayerSlider + Product Grid element. Deselect the page on Woocommerce > Settings > Pages > Shop Base Page.
2.) I don’t see the issue with the logo getting smaller but you can add this on Quick CSS:
.logo img { height: 97px !important; }3.) Change the variation select text using this:
#top .main_color select { color: red; }4.) Can you please post a screenshot?
5.) Add this to make the background transparent for logo/partner element:
#top .avia-logo-element-container .slide-image { overflow: visible; background: none; }6.) You can use this to change the blog background:
.blog .container.template-blog { background: white; padding: 0 20px; }Remove browser cache then reload the page a few times to see the changes.
Best regards,
IsmaelHi!
We recommend the Enfold theme but it is only compatible with bbPress. You need to hire a freelance developer to make it fully compatible with bbPress + S2Member Pro plugin. Please visit http://werkpress.com/.
Cheers!
Ismael -
AuthorPosts

