Forum Replies Created
-
AuthorPosts
-
Hi!
The plugin creates a custom field where you can add an external image url as featured image but it doesn’t have an option to add custom url. I don’t think it will work as you expected.
Regards,
IsmaelApril 28, 2015 at 7:27 am in reply to: Missing Featured Image when using the advanced layout editor #435818Hey!
It is actually possible but it’s not available or possible yet with the current advance layout builder option for posts. Featured images of the posts will still be visible on category or archive pages. If you want to show excerpts on archive or category pages, use the excerpt meta box.
Best regards,
IsmaelHi!
I checked the site on an emulated mobile view and the phone number is still clickable. There’s no element covering it up. Please try to remove browser cache then reload the page.
Regards,
IsmaelApril 28, 2015 at 7:17 am in reply to: Making background color over the complete 1/2 in a color section #435814Hey!
Thank you for using Enfold.
Use the Grid Row element then set the cell size accordingly. You can apply different backgrounds for each cell.
Best regards,
IsmaelHi!
You can use this:
.template-blog .entry-content p { font-size: 16px !important; }
Regards,
IsmaelHi sd142ppr!
Thank you for using Enfold.
Unfortunately, iframe forwarding or redirects will disable the site’s responsiveness. Please refer to this link for a possible fix: http://blog.thecompanywarehouse.co.uk/2012/08/22/cname-url-forwarding-frame-forwarding-which-is-best/
Best option is the 301 redirects via .htaccess. You can contact your hosting provider regarding this issue. Also, ask your host if IPS Forwarding is an available option.
Cheers!
IsmaelHey!
1.) For the single product page, please contact the woocommerce support.
2.) For post and portfolio pages, you can edit comments.php, look for this code:
<?php $ccount = (int) get_comments_number(); $rep = __( 'replies', 'avia_framework' ); if($ccount === 1) $rep = __( 'reply', 'avia_framework' ); ?> <span class='comment-count'><?php echo $ccount; ?></span>
As I’m not familiar with the language, I’m not sure if I can properly test the logic of the code above. Please contact your friend or the script author.
Best regards,
IsmaelHi!
The advance layout builder are now enabled for posts. You can copy the layout of the blog overview page plus the single post content. Note that using the advance layout builder for post will remove all default elements such as featured image, post meta info, social share section etc. You need to start from scratch. If you expect to have the same single post layout as your current blog overview page, I’m afraid that’s not possible without major modification on the single.php file.
Cheers!
IsmaelHey!
I tested this again on our installation and the tabs scroll are now working with the latest version of the theme. It does scroll up whenever the tab title is not in viewport. I noticed that you have created custom columns inside the tabs. Can you please create a test page with only text as content? Let us know if the scroll target works there.
Cheers!
IsmaelHey!
The mega menu width is calculated dynamically via javascript to keep it full width. It will take a lot of css modifications to alter it.
Regards,
IsmaelHey!
What do you mean by “pictures still gets dimmed while hovering the masonry, but not any pictures”? I checked the page and it looks OK.
Regards,
IsmaelApril 27, 2015 at 11:41 am in reply to: Enfold – Magazine (post with link format does not run) #435156Hey!
Please remove the modifications then locate this code on the same file:
$link = get_permalink($entry->ID);
That is two lines above the previous code that you modified. Replace it with:
$link = get_post_format($entry->ID) == 'link' ? avia_custom_link_content_filter($entry->post_content) : get_the_permalink($entry->ID);
Add this in the functions.php file:
function avia_custom_link_content_filter($content) { //retrieve the link for the post $link = ""; $pattern1 = '$^\b(https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|]$i'; $pattern2 = "!^\<a.+?<\/a>!"; $pattern3 = "!\<a.+?<\/a>!"; //if the url is at the begnning of the content extract it preg_match($pattern1, $content , $link); return $link[0]; }
That should take care of the icon and title link. Make sure that you add the custom url at the very top of the post text editor.
Best regards,
IsmaelHey!
Very sorry for the delay. Looks like you disabled the sidebar. The filter to change the default page layout is not working for single product pages, that’s why we added the css codes as a workaround. If you want to change the border color, just replace this code:
.single-product aside.sidebar { border-right: 1px solid; }
Add the color value:
.single-product aside.sidebar { border-right: 1px solid #eeeeee; }
If you add the sidebar back, we’ll try to fix the whitespace issue.
Best regards,
IsmaelHey!
What if you replace the code with this?
@media only screen and (max-width: 480px) { #fullscreen_slider_0 li { background-size: 100% !important; background-repeat: no-repeat; }}
It will distort the image a bit.
Cheers!
IsmaelHey Munford!
Thank you for using Enfold.
Unfortunately, it’s not possible to do it globally. You need to manually add the section id if the element is inside a color section or the custom css class attribute to each tab and accordion element then toggle the display property using css media queries. Refer to these links for more info:
http://stackoverflow.com/questions/11796297/div-show-hide-media-query
https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263
https://kriesi.at/support/topic/is-there-an-option-to-create-a-separate-page-design-specific-to-mobile-devices/
https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
https://kriesi.at/support/topic/replace-slider-on-mobile/Cheers!
IsmaelHi!
Got some errors in the console:
http://www.spaniafisioterapia.com/wp-includes/js/tinymce/wp-tinymce.php?c=1&ver=4107-20150118 Failed to load resource: the server responded with a status of 403 (Forbidden)
Please contact your hosting provider. Tell them about the error then ask them if they can adjust the file and folder permissions properly.
Regards,
IsmaelHey!
You can add something like this in the Quick CSS field:
.big-preview a:before { content: ''; display: block; width: 100%; height: 100%; background: rgba(0,0,0,.5); z-index: 1000; position: absolute; } .big-preview:hover a:before { display: none; }
Cheers!
IsmaelHey!
Ok. I checked the code again here: https://kriesi.at/support/topic/the-magnific-popup-dont-work-with-buttons/#post-432781
I noticed that it’s incorrect. Please replace it:
add_theme_support('avia_template_builder_custom_css'); add_action('wp_footer', 'inline_popup_enabler'); function inline_popup_enabler(){ ?> <script> (function($){ $(window).load(function() { $('.inline_popup').magnificPopup({ type:'inline', midClick: true }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script> (function($){ $('.inline_popup a').addClass('inline_popup'); })(jQuery); </script> <?php }
Make sure to add it below this line:
<?php
If it doesn’t work, please post the login details here. We would like to check it.
Regards,
IsmaelHey ProAnts!
Thank you for using Enfold.
Unfortunately, we won’t be able to help if the site is down. Please contact your hosting provider to restore the site back to a point when it is still working. Refer to this link for a more detailed explanation of updating the theme: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regards,
IsmaelHi Haycreations!
Thank you for using Enfold.
Make sure that all symbols in the code are correct, specifically the quotation marks. Get the code here: http://pastebin.com/eJZh0bhC
Regards,
IsmaelHi tropsens!
Thank you for using Enfold.
I’m sorry but there is no default option to add a custom url on the featured image. You can set the post format to “Link” but it will redirect the whole post to a custom url, not just the featured image. If you use the portfolio items, you can overwrite the default link of the image with a custom one.
Cheers!
IsmaelHi!
Ok. Try to install a minify plugin or a cache plugin then enable the minify settings. It might fix the the insecure content issue.
Cheers!
IsmaelApril 27, 2015 at 6:21 am in reply to: Enfold flat business theme: Every page has a differenct background color! Why? #435029Hi LearnBySkype!
Thank you for using Enfold.
They are not the header background because the page is set to transparent header. What you see is the color section background. Edit the page then look for the first color section. You can change the background color.
Cheers!
IsmaelApril 27, 2015 at 6:19 am in reply to: Redirect category pages to latest post in each category? #435027Hey Geoff!
Thank you for using Enfold.
You can manually add a redirection pattern on the .htaccess file or you can use this plugin to redirect a category url to a specific post: https://wordpress.org/plugins/redirection/installation/
Best regards,
IsmaelApril 27, 2015 at 6:11 am in reply to: Masonry Gallery – Images Stacking On Top Of Each Other #435024Hi!
@ElainL: Yes, it is on the child theme’s functions.php file. You don’t need to do anything when you update the theme.
@John: Add the code in the functions.php file: https://kriesi.at/support/topic/masonry-gallery-images-stacking-on-top-of-each-other/#post-433895Best regards,
IsmaelHi!
It’s not working because the Page Sidebar Navigation option in the Sidebar Settings panel is disabled. Check one of the child the pages now: http://sonet.digital/about/team/
Sorry for the mess. The code is pretty basic and need additional modifications like conditional functions, css modifications etc. If you want to disable the default sidebar page navigation, add this in the Quick CSS field:
.sidebar nav.widget.widget_nav_menu { display: none; }
You can contact codeable or hire a freelance developer to add the finishing touches.
Cheers!
IsmaelHi!
The code above should unset or remove the itemprop=”mainContentOfPage” of the single post page but it’s not happening on your installation so I guess the modifications on the child theme is not working. Please try to change it directly in the parent theme files. I tested it on my installation and the testing tool validate the whole post structure.
Regards,
IsmaelHi!
OK. I tried to access the site but it redirects me to a GoDaddy page. Please check.
Regards,
IsmaelHi!
I checked the second slide and it doesn’t show any still image on first load. I can see the issue on the last slide though. Did you fix it by using the video tag instead of the iframe?
Regards,
IsmaelApril 27, 2015 at 3:02 am in reply to: Image cropping / scaling on thumbnails / featured images #434962Hey!
Hmm.. Yeah. Looks like it’s not working in a child theme but editing the code directly in the functions.php works fine. This should do the trick in the child theme:
function ava_image_sizes() { add_image_size('portfolio_small', 261, 186, array('center', 'top')); } add_action( 'after_setup_theme', 'ava_image_sizes', 11 );
Based on: http://wordpress.stackexchange.com/questions/74934/remove-or-update-add-image-size
Don’t forget to regenerate the thumbnails. If you have the Simple Image Sizes plugin installed, please deactivate it first.
Best regards,
Ismael -
AuthorPosts