Forum Replies Created
-
AuthorPosts
-
Hi!
That should work submenus too i think, can you post a link to your website?
Cheers!
JosueHey Julia!
If you want to hide it automatically you can do it through CSS, try adding this code to Quick CSS:
.single-format-video .big-preview{ display: none !important; }Regards,
JosueOctober 23, 2014 at 12:13 am in reply to: How to repeat social icons from header and clone them to footer? #339829Hey Gabe!
You can copy the HTML and paste it in the footer as a Text Widget – http://imgur.com/07Ow7ZY
Cheers!
JosueHi!
That won’t be affected, this change is only made on the client side, if you go to the source (this is what bots read) you’ll still see the alt tag showing the alt text – http://screencast.com/t/8V6jozrdKN
Cheers!
JosueHi!
Can you paste the errors you are getting in Pastebin? i’m not seeing any errors in the link you posted.
Best regards,
JosueOctober 22, 2014 at 11:50 pm in reply to: Change featured image size and optimize for retina displays #339822Hey!
Using the Simple Image Sizes plugin should work i think, have you tried it? the size to edit will depend on your layout settings.
Best regards,
JosueOctober 22, 2014 at 11:47 pm in reply to: How to add an HTML logo to the right of the existing logo #339819Hi Gabe!
You can use the
avf_logo_final_outputhook, something like this:function av_change_logo($logo, $use_image, $headline_type, $sub, $alt, $link){ $logo .= "<div class='custom_content'>Custom HTML content here</div>"; return $logo; } add_filter('avf_logo_final_output', 'av_change_logo', 100, 6);Cheers!
JosueHola
El theme no se ha subido correctamente, en este caso tendrías que re-subirlo via FTP, elimina el theme (la carpeta enfold) antes de subirlo, aveces cuando lo sobreescribes se mezclan archivos o no se sube correctamente.
Si aun así los problemas persisten, proveéme de una cuenta FTP para intentar subirlo yo.
Saludos,
JosueOctober 22, 2014 at 11:38 pm in reply to: Remove featured image on main blog but keep the small icon image to the left #339814Hi Diana,
Can you post the link to your blog page or a blog post please?
Regards,
JosueHi,
Can you check if it happens with the default WordPress theme activated?
Cheers!
JosueYes, you are welcome, glad to help :)
Regards,
JosueOctober 22, 2014 at 11:26 pm in reply to: How to repeat social icons from header and clone them to footer? #339805Hi Gabe!
In that case i’d suggest using the footer instead with a 3 column layout + widgets.
Regards,
JosueIn that case you’d just need to create it (an empty functions.php), inside your child theme directory.
Best regards,
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHi!
Can you detail what exactly went wrong?
P.S. Puedes escribir en Español si deseas.
Cheers!
JosueHi!
The logo doesn’t appear on my end, adding this CSS code seems to fix that:
.logo img { width: 300px; }Regarding its position, it is centered because you have selected that setting in the Theme Options > Header.
Regards,
JosueHey Frank!
Please review your site, i was able to set the “Genießer-Blog” as the Blog in the theme options without losing the page.
Regards,
JosueHey Julia!
Try ticking this checkbox in the edit Post page – http://screencast.com/t/aVy6x09seVa
Best regards,
JosueHi Karl!
1. Add this to Quick CSS (adjust as needed):
.avia_desktop .av-hover-overlay-active .av-masonry-image-container{ opacity: 0.7; } .av-inner-masonry.main_color{ background: black; }2. You can set the number of columns in the element options, if that’s not what you meant please create a mockup describing what you want to achieve.
Cheers!
JosueOctober 22, 2014 at 10:50 pm in reply to: Format Twitter-Output in the Share links at the bottom of blog post #339786Hi,
Can you please create us an administrator account? post it here as a private reply.
Regards,
JosueOctober 22, 2014 at 10:21 pm in reply to: Term 'Search' beside icon, doesn't activate search popup #339780Hello,
Seems to be a JS conflict issue, have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHey Marie!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter( 'init', 'alter_post_formats_formatting', 10); function alter_post_formats_formatting() { add_filter( 'post-format-gallery', 'avia_default_title_filter', 10, 1 ); add_filter( 'post-format-video', 'avia_default_title_filter', 10, 1 ); add_filter( 'post-format-image', 'avia_default_title_filter', 10, 1 ); add_filter( 'post-format-link', 'avia_default_title_filter', 10, 1 ); add_filter( 'post-format-quote', 'avia_default_title_filter', 10, 1 ); add_filter( 'post-format-audio', 'avia_default_title_filter', 10, 1 ); remove_filter( 'post-format-gallery', 'avia_gallery_slideshow_filter', 10, 1 ); remove_filter( 'post-format-video', 'avia_video_slideshow_filter', 10, 1 ); remove_filter( 'post-format-image', 'avia_image_slideshow_filter', 10, 1 ); remove_filter( 'post-format-link', 'avia_link_content_filter', 10, 1 ); remove_filter( 'post-format-quote', 'avia_quote_content_filter', 10, 1 ); remove_filter( 'post-format-audio', 'avia_audio_content_filter', 10, 1 ); }Cheers!
JosueOctober 22, 2014 at 10:12 pm in reply to: Changing the Color of the Arrows and Close Buttons in Magnific Popup #339773You are welcome, glad to help :)
Regards,
JosueHey!
Please update the theme to the latest version (3.0.2).
If that doesn’t fix it, hand us an admin account so we can take a look.
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.image-overlay{ display: none !important; }Cheers!
JosueOctober 22, 2014 at 10:09 pm in reply to: Problem With Fallback Image when using Fullscreen slider #339769Hey!
Can you post a screenshot of your view on mobile?
Best regards,
JosueHey!
Refer to this topic:
https://kriesi.at/support/topic/how-to-display-nested-sub-menu-items-in-sidebar/Best regards,
JosueHey!
1. Add this to theme / child theme functions.php:
add_filter( 'avf_portfolio_sort_first_label', 'change_first_label', 10); function change_first_label() { return "First Label"; }2. You can put icon shortcodes in menu item labels, like this – http://screencast.com/t/5stAzjYCY4
Best regards,
JosueHey!
Try changing the “Header Mobile Menu activation” setting in Header > Mobile Menu.
Cheers!
JosueHey!
Those messages are coming from the “sitepress-multilingual-cms” plugin, not from the theme. You can hide them though by adding this line to your wp-config.php file:
error_reporting(0);Best regards,
Josue -
AuthorPosts
