Forum Replies Created
-
AuthorPosts
-
Hey Tobias!
Thank you for using Enfold.
We need to see actual website in order to inspect it. Try to adjust the logo’s vertical position with this in the Quick CSS field:
strong.logo.bg-logo { top: 20px; }
Best regards,
IsmaelHey!
If you want the custom code to appear on the category and single pages, edit archives.php and single.php file. Place it above the loop:
get_template_part( 'includes/loop', 'index' );
Cheers!
IsmaelHi!
We asked you to provide a screenshot of how you want the logo to look inside the header but we didn’t get any. We really don’t know what’s wrong with it because it looks totally fine when I checked the page. If you want to add a padding around the logo, use this:
strong.logo { padding: 10px; }
The media library works ok on our installation so it’s either a third party plugin or one of the custom modifications is causing the issue. Please try to deactivate all plugins, remove browser cache then test it again.
Regards,
IsmaelHey!
You can use the poedit software or this plugin to translate the “search” string: https://wordpress.org/plugins/codestyling-localization/
If you want to edit the text manually, edit searchform.php. Look for this code:
'placeholder' => __('Search','avia_framework')
Replace it with:
'placeholder' => 'Search'
Best regards,
IsmaelApril 21, 2015 at 6:45 am in reply to: Single Photos still Linked to Curtom URL -WP.com after Website Transfer #431776Hi!
WP Migrate DB should handle the url switch but yes, I think the plugin will work. I haven’t tested it personally though. Since you paid for the transfer and they didn’t do it properly, I think you have the right to ask them to use the plugin that they suggested to adjust the url. You can actually do this in the database manually but you can try the plugin first.
Best regards,
IsmaelHi!
Oh. Okay. I thought you want the default nested page navigation in the breadcrumb bar. Anyway, that kind of menu isn’t available by default. You can try the ubermenu plugin. Or use the Fullwidth Submenu Element but you will have to add it on every child pages.
Cheers!
IsmaelHey!
They are hidden by default on mobile because the space isn’t enough to contain both the image and the post content. You can add this in the Quick CSS field:
@media only screen and (max-width: 767px) .template-blog .blog-meta { float: left; margin-right: 20px; width: 20%; }}
Cheers!
IsmaelApril 21, 2015 at 6:33 am in reply to: Image cropping / scaling on thumbnails / featured images #431770Hey!
My bad. Please replace the code with this:
add_action('init', 'ava_my_image_size', 1); function ava_my_image_size() { global $avia_config; $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185, array('top', 'center')); }
Cheers!
IsmaelHey!
I can see the issue, however, we don’t provide support for third party plugins. Please contact the plugin author. Anyway, you can try this in the functions.php file:
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ $(window).on("resize", function (event) { if (event.originalEvent === undefined) { var alien = 'alien'; console.log(alien); } else { var human = 'human'; console.log(human); } }).resize(); })(jQuery); </script> <?php }
The issue fix itself when you resize the browser so, maybe, the code above will help.
Regards,
IsmaelHey!
I replaced it with the full url and it works fine. **removed upon request**
Please post a step by step instruction in order to reproduce the issue. If possible, please create a test page.
Cheers!
Ismael-
This reply was modified 10 years, 2 months ago by
Yigit.
Hey!
It looks horizontally aligned on smaller screens. Add this in the Quick CSS field:
#wrap_all { position: relative; }
Please update the theme to the latest version, 3.1.3.
Best regards,
IsmaelHey prohronus!
Thank you for using Enfold.
Add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script> (function($){ $('.inline_popup a').addClass('inline_popup'); })(jQuery); </script> <?php }
Remove browser cache then reload the page.
Cheers!
IsmaelHey!
1.) Go to the Pages panel then delete the page “Bestellung anzeigen”. It’s no longer needed because of the endpoints.
2.) Use this in the Quick CSS field to change the font size of the price text:
#top .price, #top .price span, #top del, #top ins { font-size: 20px; }
This one is for the cart item price:
#top .cart_list .quantity span.amount { font-size: 20px; }
Adjust the value as you like. Remove browser cache then reload the page.
Regards,
IsmaelHi kellymarie2001!
Thank you for using Enfold.
This will require custom modifications on the theme. Try to edit includes > loop-index.php, look for this code:
if(empty($avia_config['remove_pagination'] )) { echo "<div class='{$blog_style}'>".avia_pagination('', 'nav')."</div>"; }
Replace it with:
echo "<div class='custom-pagination'>"; global $wp_query; $page = $wp_query->max_num_pages; $args = array( 'format' => 'page/%#%', 'total' => $page, 'type' => 'plain', ); echo paginate_links( $args ); echo "</div>";
I’m not sure if this is going to work properly on archive pages. Refer to this link for more info: https://codex.wordpress.org/Function_Reference/paginate_links
Regards,
IsmaelHey Marcel!
Thank you for using Enfold.
You can edit comment.php file then look for this line:
$rep = __( 'replies', 'avia_framework' );
Or use the codestyling localization plugin to translate or change the string.
Regards,
IsmaelHi!
It looks fine on Safari Windows 8 and 7. Anyway, please try this in the Quick CSS field:
span.copyright { -moz-font-smoothing: antialiased; -webkit-font-smoothing: antialiased; font-smoothing: antialiased; }
Cheers!
IsmaelHi!
Are you having any issues with the advance layout builder? Maybe those warning are just false positives. If the advance layout builder is not working, specifically the tab, toggles and table elements, let us know.
Regards,
IsmaelHi!
Those scripts are use in the media, tab, toggle and table editor. Please check those elements. Let us know if they’re not working properly.
Best regards,
IsmaelHi!
Replace this line of code in the functions.php file:
function avia_change_post_layout($layout, $post_id){ global $woocommerce; if(is_product()) $layout['current']['main'] = "sidebar_right"; return $layout; }
with this:
function avia_change_post_layout($layout, $post_id){ global $woocommerce; if(is_product()) $layout['current']['main'] = "sidebar_left"; return $layout; }
Regards,
IsmaelHi JerrelZ!
Thank you for using Enfold.
That is the theme’s default forum layout. We chose to remove clutters like freshness, notices etc but you can still display it via css if you want. Please post the website url here.
Best regards,
IsmaelHey!
Thank you for your understanding. We know that rebuilding a site from a theme takes a lot of time specially when you’re not familiar with the whole process. You can still post inquiries and we will gladly help you out.
Regarding the issue, you have to replace the youtube link with the video element or place the youtube link inside a column layout (1/2 or 2/3).
Best regards,
IsmaelHey Kameel!
Thank you for using Enfold.
You can find all woocommerce or product modifications in the config-woocommerce > config.php file.
Best regards,
IsmaelHi mocablue!
Thank you for using Enfold.
Please create a test page so that we can check the issue. You need to apply the overflow property in the popup container.
Regards,
IsmaelHi!
Please post the login details here and set it as a private reply so that all moderators can see it. If you have the time, please translate the inquiry to english.
Regards,
IsmaelHi!
I’m not sure if it is possible or I’m not sure if I understand you clearly. Did you see any example of this somewhere? I’ll ask the rest of the support team to check.
Cheers!
IsmaelHi!
Replace the fullwidth easy slider with a color section. Move the anchor name “catering” as Section ID of the color section. Apply the image as background.
Best regards,
IsmaelHi gharding!
Thank you for using Enfold.
You can try this:
div#header_main_alternate { background-color: #fff; background-image: url("/graphics/menu-border.jpg"); background-position: center bottom; background-repeat: repeat-x; }
You need to get the the menu-border.jpg file.
Regards,
IsmaelHi dominiquehurley!
Thank you for using Enfold.
You need to recreate the video using the video element.
We are more than happy to help you rebuild the site but I noticed that you have created more than 40 inquiries in less than a week. That is 1000% more inquiries per week than our average users here. I’m sorry but it looks like you need someone, other than us, to help you rebuild the site. Please hire a freelance developer or contact codeable to help you with it: http://kriesi.at/contact/customization
Cheers!
Ismael -
This reply was modified 10 years, 2 months ago by
-
AuthorPosts