Forum Replies Created
-
AuthorPosts
-
Hi!
It’s actually the same. The first column should end after this code:
<div class='hr_invisible'>And the second half should start before this code:
<section class="404_recommendation">Please get the code from pastebin that we provided above: http://pastebin.com/davKbdDk
Look for the flex column container. I think you will understand the code from that.
Regards,
IsmaelHi!
I tried to login to the site but the wp admin got redirected to this page: http://latitudes.org/members/profile.php
The login credentials above are not working. Is this the only page with the optimizepress plugin activated? http://latitudes.org/store/should-you-consider-pandas-ebook/
You can replace this selector (body.op-plugin) with the page id.
@media only screen and (min-width: 960px) { .page-id-14779 .container { max-width: 100%; }}Regards,
IsmaelHey!
Alright. The post navigation or the arrows on each side of the page can only filter same custom post types but it doesn’t recognize hidden products. You can set the arrows to filter products from the same categories and then edit the hidden products. Remove them from any categories temporarily. Add this in the functions.php file:
add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod'); function avia_post_nav_settings_mod($settings) { if(is_singular('product')) { $settings['taxonomy'] = 'product_cat'; } $settings['same_category'] = true; return $settings; }Since the hidden product doesn’t have any categories, it will not be included in the set of product items filtered by the post navigation.
Best regards,
IsmaelHi!
You can edit the image in the contact page then adjust the bottom position using css.
.avia-image-container.av-styling-.avia-builder-el-5.avia-builder-el-no-sibling.avia-align-center { bottom: -120px; }You can replace the css selector with the custom css class. For further modifications, please contact codeable: http://kriesi.at/contact/customization
Regards,
IsmaelHi!
Sorry for the delay. I will ask Kriesi to check this thread personally. Please wait for his response.
Regards,
IsmaelJuly 10, 2015 at 9:26 am in reply to: Move Logo and Menu down, then have them adjust to 'shrinking header' #471347Hey Kyle!
Thank you for using Enfold.
Try to replace the code with this:
.logo { left: 95px; bottom: -30px;} .main_menu div > ul > li > a { line-height: 120px !important; } .header-scrolled .logo { bottom: 0;}Best regards,
IsmaelJuly 10, 2015 at 9:18 am in reply to: Can we get a theme option to output normal page headlines? #471336Hi mattmikulla!
Thank you for using Enfold.
If I remember correctly, we suggested different ways in order to add your title in the main container instead of the breadcrumb container. Did you try any of them?
This particular code will remove the title html, if that’s what you’re worried about, from the breadcrumb container: https://kriesi.at/support/topic/enfold-layout-breadcrumb-only-above-and-normal-page-headingheadline/#post-428658
If you want to add the title when using the advance layout builder, you can add this in the functions.php file:
add_action('avf_template_builder_content', 'ava_after_main_container_mod', 10, 1); function ava_after_main_container_mod($content = '') { $content = get_the_title() . $content; return $content; }If you’re not using the advance layout builder for pages, you can modify the page.php file. You can do these modifications or you can request for that particular feature here: https://kriesi.at/support/enfold-feature-requests/
Best regards,
IsmaelJuly 10, 2015 at 8:56 am in reply to: URGENT – after directory redirect, theme not displaying! #471318Hi!
Thank you for using Enfold. Glad you found the issue. If you have any question, let us know. :)
Regards,
IsmaelJuly 10, 2015 at 8:47 am in reply to: make the small line under the header and between content and sidebar invisible #471312Hi!
I checked the site but I don’t see any lines under the menu items. Please provide a screenshot. Use imgur or dropbox.
Cheers!
IsmaelHi Nathan!
Thank you for using Enfold.
You can add this to the Quick CSS field:
.avia_textblock p, .avia_textblock { font-family: Courier; font-size: 16px; font-weight: 600; }Regards,
IsmaelHey janeyj!
Thank you for using Enfold.
You can remove the code then replace it with:
@media only screen and (min-width: 1024px) { .av-main-nav > li > a { letter-spacing: .5px; padding: 0 10px; font-family: 'Open Sans' !important; font-weight: 500; font-size: 15px; }}Best regards,
IsmaelHi!
Alright. Add this in the Quick CSS field:
#custom-section { position: relative; margin-top: -200px; z-index: 200; background: none; border-top: 0; }Cheers!
IsmaelJuly 10, 2015 at 8:22 am in reply to: Help! Price showing in size dropdown box. Need it GONE! #471305Hey!
I check the product and the variations are quite different from the default woocommerce installation. There is a dollar sign beside the size attribute. There is a product variation in my installation but it doesn’t display any prices in the attribute options. Please try to deactivate the woocommerce extensions in the plugins directory.
Cheers!
Ismael-
This reply was modified 10 years, 9 months ago by
Ismael.
Hi!
OK. There is this woocommerce function called get_related() and it turns out that it does filter by category plus the tags as well. If you have the same tags on product items they will be treated as related products.
Regards,
IsmaelHi!
Alright. Please add another color section below the layer slider then apply a unique id in the Section ID field. Use “custom-section” for example. Inside the color section, add a text or code block then add the form code. Once you’re done, let us know then we’ll give you the css codes.
Best regards,
IsmaelHi!
It should jump to the next upcoming event. This seems to work on my installation. Alright. Please create a test page.
Cheers!
IsmaelHi!
Please try to edit the config-templatebuilder > avia-shortcodes > events_countdown.php. Remove everything then replace it with this: http://pastebin.com/z7vvR7PS
Regards,
IsmaelHey!
First, please try to update the theme to the latest version, current version in your installation is 3.1.5. Update it to 3.2.2. If the update doesn’t fix the problem, try to deactivate all plugins then check it on another browser.
Best regards,
IsmaelHey!
We can’t see the screenshot because it is protected. Please provide the login details here. You can also use imgur or dropbox for the screenshot.
Best regards,
IsmaelHey!
We actually need to see the live website because we have to identify the menu item id. You can use these menu ids to adjust the position of a specific menu item. For starters, you can add this to hide the mobile menu and show the default menu:
@media only screen and (max-width: 989px) { .responsive.html_mobile_menu_tablet .container #advanced_menu_toggle, .responsive.html_mobile_menu_tablet #advanced_menu_hide { display: none; } .responsive.html_mobile_menu_tablet .main_menu .avia-menu, .responsive.html_mobile_menu_tablet #header_main .social_bookmarks, .responsive.html_mobile_menu_tablet #header_main_alternate { display: block; } }Best regards,
IsmaelHey!
It really doesn’t clear the entry because there are different forms on each slide. Is this form supposed to be sticky? Remove the form in the slides then add a text block or code block below the layer slider. Add the form script there. Use css to add a negative top margin property or top property to the code block to offset its position.
Cheers!
IsmaelHey!
Try to put it in a single line:
jQuery(‘.ga-buy-1 a’).attr(‘onclick’, ‘window.uetq = window.uetq || []; window.uetq.push({ \‘ec\':\’Video\’, \‘ea\':\’Play\’, \‘el\':\’Product Demo\’, \‘ev\':\’5\′ })\; ga(\’send\’, \’event\’, \’Buy Button\’, \’Resume\’, \’Resume Template Download\’)\;’);Regards,
IsmaelHey!
Did you set the page to have a transparent header? Please edit the page then reset the Header visibility and transparency settings.
Best regards,
IsmaelHi Roshan!
Thank you for using Enfold.
You can use this filter to add an onclick attribute to the contact form’s submit button: https://kriesi.at/support/topic/support-request/#post-401071
Or create a custom script in the functions.php file:
add_action('wp_footer', 'get_value_mod', 10); function get_value_mod(){ ?> <script> (function($) { $('input[type="submit"]').on('click', function(event) { function get_value() { var email = $('#avia_e-mail_1').val(), name = $('#avia_name_1').val(); alert(name + ' : ' + email); } get_value(); }); }(jQuery)); </script> <?php }Cheers!
IsmaelHey!
Add this in the Quick CSS field to hide the button on mobile:
@media only screen and (max-width: 767px) { .click-me-toggle { display: none; } }Cheers!
IsmaelHi!
Thank you for using Enfold.
You can use this instead:
.single-product .template-shop span.amount { font-size: 20px !important; text-align: right; display: block; }It will not affect the widgets in the footer area.
Cheers!
IsmaelHi ermington!
Thank you for using Enfold.
Go to the Enfold > Shop Options panel then set the Header Shopping Cart Icon to “Always display attached to the main menu”.
Regards,
IsmaelHi moreleads!
Thank you for using Enfold.
Is there any issue with the site aside from the warnings? Please add this in the wp-config.php file to hide those warnings:
define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);Cheers!
IsmaelHey skreilos!
Thank you for using Enfold.
You can add this in the Quick CSS field to disable weekends:
td.ui-datepicker-week-end a { pointer-events: none; color: red !important; }Cheers!
IsmaelHi NBSIME!
Thank you for using Enfold.
You can activate the title and breadcrumbs container in the Enfold > Header > Header Title and Breadcrumbs settings. It is also possible to set the option for each page in the Layout settings.
I checked the site and it’s using a very old version of theme, 2.8.1. Please update to the latest version 3.2.1. After the update, you may find broken elements, all you need to is to reconfigure the options or create the elements from scratch. Please update the theme regularly.
Regards,
Ismael -
This reply was modified 10 years, 9 months ago by
-
AuthorPosts
