Forum Replies Created
-
AuthorPosts
-
Hey!
1. Create a new menu in Appearance > Menus
2. Set your menu items with anchors, put them as ‘Links’ – http://screencast.com/t/qIou0sFn
3. Go to Appearance > Widgets and drag Custom Menu widget to your desired Widget area.Cheers!
JosueHi Jared!
I’d also suggest increasing the memory limit, your current limit is 128M and your site is using 73M at peak, try increasing it to at least 256M:
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHPRegards,
JosueHi,
Check your archive page now, i added this to child functions.php:
function change_blog_archive_style() { global $avia_config; if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; } } add_action('get_header', 'change_blog_archive_style');Cheers!
JosueHi Ralf!
Which slider are you referring with ‘simple slider’?
Best regards,
JosueHi,
Try adding this at the very end of your theme functions.php file:
function add_custom_script(){ ?> <script> jQuery(window).load(function(){ jQuery("#avia-menu").magnificPopup({ delegate: "a[href*='iframe=true']", type: 'iframe', preloader: false, }); }); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
JosueHey!
Can you post a link to one of these posts with double featured images?
Cheers!
JosueOctober 22, 2014 at 4:08 pm in reply to: Problem with "Add to gallery" from "Media Library" from "Gallery" #339517Hola Jose Maria,
Pues 43 items me parece excesivo, hasta donde se el theme crea 13 versiones de la imagen para que pueda ser usada en todos los elementos y entornos, puedes desactivar las que no uses instalando este plugin. Si no te es permitido instalar mas plugins puedes borrarlas directamente editando functions.php, lineas 99 a 110:
$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']['featured_large'] = array('width'=>1500, 'height'=>630 ); // 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'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['magazine'] = array('width'=>710, 'height'=>375 ); // images for magazines $avia_config['imgSize']['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); // images for fullscreen masonry $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize sliderSaludos,
JosueOctober 22, 2014 at 4:03 pm in reply to: Bug / incompatibility with Google Analytics by Yoast plugin #339513I made a test page with a Magazine Element on my sandbox install (WP 4.0, Enfold 3.0.2, Google Analytics by Yoast 5.0.7), you can check it here – http://bit.ly/1CW6f8G
Best regards,
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
You are welcome, glad we could help :)
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueDale, es lo único que se me ocurre porque estoy seguro que sucedería con cualquier otro Theme activado.
You are welcome, let us know if you have any additional questions or issues.
Best regards,
JosueI needed to add !important so it doesn’t get overwritten by any other rule:
.image-overlay .image-overlay-inside:before { content: "\E800" !important; font-family: 'fontello' !important; }Regards,
JosueHi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueHi!
We use the WP_Query Class to get the content to show in the masonry element, as far as i know there is no way to fetch Taxonomies instead of Posts/Pages/Products/etc.
Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueTry with this code instead:
@media only screen and (max-width: 767px) { .responsive #header_main .container { height: 140px !important; } }Regards,
JosueHey Mohan!
You’d need to use another approach if you want your header to look good on mobiles:
1. Separate the logo from the background, make it two separate images
2. Set the background as a background image in General Styling > Logo Area.
3. Set the logo as the logo in Theme Options.
4. Set the phone + text in Header > Extra Elements > Header Phone Number/Extra Info as text or as an image (HTML).Regards,
JosueHey Mohan!
How would you like the slider to look on mobile, can you post a mockup/screenshot?
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) { #header_main .container { height: 140px !important; } }Cheers!
JosueOctober 22, 2014 at 5:48 am in reply to: Dummy data xml file not included in Enfold Theme package #339368Hi Brad!
Can you check if you get any clue in your PHP error log? this seems to be a server-related issue as even the WP Theme Unit Test is not getting imported correctly – http://screencast.com/t/FjSzS7TXJxT
Regards,
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueOctober 22, 2014 at 5:17 am in reply to: Dummy data xml file not included in Enfold Theme package #339365Hi Brad,
Can you please create me an administrator account on the install you are trying to do this? post it here as a private reply.
Regards,
JosueHey!
Try adding this at the very end of your theme functions.php file:
add_filter('avf_title_args', 'fix_blog_page_title', 10, 2); function fix_blog_page_title($args, $id) { if(is_page($id)) { $parents = get_post_ancestors($id); if(!empty($parents)) { $id = $parents[count($parents)-1]; $args['title'] = get_the_title($id); } } return $args; }Cheers!
JosueOctober 22, 2014 at 5:08 am in reply to: Dummy data xml file not included in Enfold Theme package #339361Hi!
I’d suggest resetting your WordPress installation before attempting to import the dummy content, you can use this plugin for that.
Regards,
JosueHi Lyse,
Can you please check if it happens with the default WordPress theme activated? also, have you tried disabling all third-party plugins?
Cheers!
JosueHello Kevin,
Have you tried disabling all third-party plugins to see if it gets fixed? also, can you hand us a temporary WordPress administrator account so we can take a look?
Regards,
JosueOctober 22, 2014 at 5:00 am in reply to: How can I increase the width of the logo area in the header? #339355You should be able to change that from the Theme Options.
Best regards,
JosueHey Ralf!
What slider are you using? if you are using LayerSlider you could do something like this (it’s for YouTube but it should work for Vimeo too) on a HTML layer.
Best regards,
JosueHey!
Whatever you like, without the dot, example:
button-newsletterBest regards,
Josue -
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
