Forum Replies Created

Viewing 30 posts - 25,291 through 25,320 (of 25,536 total)
  • Author
    Posts
  • in reply to: Highlight current category on product preview #703611

    Hey!

    Yes, remove this code in your Quick CSS:

    .widget_product_categories li.cat-parent.current-cat-parent {
        background-color: #fe1414 !important;
    }

    Let us know if it works :)

    Cheers!
    Nikko

    in reply to: Wrong built-in Conact Form e-mail subject. #703593

    Hi!

    I think what you want to change is not the email subject (receiver is the admin) instead you want to change the autoresponder email subject (receiver is the one who subscribed), I have commented out the code you have added based on the link and I have added this code on your functions.php:

    add_filter( 'avia_contact_form_args', 'enfold_custom_autoresponder_subject', 10, 1);
    function enfold_custom_autoresponder_subject( $form_args ) {
    	$form_args['autoresponder_subject'] = 'Komunikracja - mów i rządź. Od teraz jesteśmy w kontakcie.';
    	return $form_args;
    }

    I tried it and it worked. I noticed that the from email contains Komunikracja – mów i rządź. Od teraz jesteśmy w kontakcie and email and modified the code above to (which has no issue on my local server; for security purposes I have replaced your email to (Email address hidden if logged out) , real content is in the private content):

    add_filter( 'avia_contact_form_args', 'enfold_custom_autoresponder_subject', 10, 1);
    function enfold_custom_autoresponder_subject( $form_args ) {
    	$form_args['autoresponder_subject'] = 'Komunikracja - mów i rządź. Od teraz jesteśmy w kontakcie.';
    	$form_args['autoresponder_email'] = 'Name Here < (Email address hidden if logged out) >';
    	return $form_args;
    }

    but suddenly the site returns 500 internal error. Can you remove this in functions.php via ftp or cpanel:
    $form_args['autoresponder_email'] = 'Name Here < (Email address hidden if logged out) >';
    that was the last addition before having that error. I apologize for this.

    Regards,
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko. Reason: hide email
    in reply to: Add Sidebar Controls to Custom Post Type #703546

    Hi!

    If it’s just the frontend, initial guess would be in the url. example: https://solace2.staging.wpengine.com/job/intermediate-full-stack-software-developer it’s looks like https://website.com/post_type/title, but if the post_type slug is rewritten then you can’t guess in the frontend. If you check on the backend and click on Job Listings you will have this url: https://solace2.staging.wpengine.com/wp-admin/edit.php?post_type=job_listing just by looking at the end of the url you will know the post type.

    As for the layout it is how it was coded, if you want to preserve the style of the content and have the sidebar removed, I suggest doing so by removing the sidebar via css through Quick CSS. Hope this helps :)

    Regards,
    Nikko

    in reply to: Sovling issue responsive on smartphone #703537

    Hey!

    Thanks for providing the login. This issue should be fixed, I have added this code in your Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:980px) {
      .avia-fullscreen-slider .avia-slideshow {
        max-height: 360px;
      }
    }
    
    @media only screen and (max-width:767px) {
      .avia-fullscreen-slider .avia-slideshow {
        max-height: 220px;
      }
    }

    The 360px is for ipad (portrait mode) and 220px is for mobile, just adjust the values as you see fit. Hope this helps, if you have any questions related to this topic, let us know. :)

    Cheers!
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko.
    in reply to: Website not right on phone #703535

    Hi Dick,

    Thanks for providing the login. I think deactivating plugins is unecessary after checking the backend, however I could not access the theme editor and edit functions.php to enable custom classes. Can you edit functions.php and find this code:
    // add_theme_support('avia_template_builder_custom_css');

    and replace it with:
    add_theme_support('avia_template_builder_custom_css');

    Let us know if this is done and we will be checking this again.

    Regards,
    Nikko

    in reply to: Image link to Attachment Page #703534

    Hi Samuel,

    Glad that it’s fixed. Just a reminder on editing files on theme, make a backup on it before doing a theme update as everything will be overwritten. Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: Add Sidebar Controls to Custom Post Type #703533

    Hi Jeebar,

    I have added the code above which I thought was removed and the stage site is now down because of an error. Can you remove the code I’ve added at the bottom of functions.php which is similar above. Also it’s not working because the post type is job_listing and not job. Let me know if it works and I apologize for my mistake.

    Best regards,
    Nikko

    in reply to: Easy Slider works only on Preview, not when live #703531

    Hey!

    Thanks for providing the login, I was checking at the backend, deactivated all plugins tried to added fullwidth easy slider and everything works fine, except when you attach a button and link it, I tried to replicate this issue on my local server but all is working fine on my end. This is really weird issue since fullscreen slider also has the same issue not able to fetch images when you try to add a button and link it. No js error also appears (I added a google api key when testing) that shows that it has any problems. Can you give us an ftp access so we can check the files and error logs that might give us an idea why this weird issue is appearing, please put it in the private content also.

    Best regards,
    Nikko

    in reply to: Pagination issue #703530

    Hey Poirot,

    I tried the login details which you posted but it’s not working on my end. Can you please check.

    Regards,
    Nikko

    in reply to: contact form #703529

    Hi Uros,

    This is fixed. No plugins are disabled during the troubleshooting process. It’s my bad the code I gave was the one I made when testing on my end, this is the fixed version of the code:

    function add_custom_placeholder(){
    ?>
      <script>
        jQuery(window).load(function(){
          jQuery('.page-id-103 input#avia_2_1').attr('placeholder', 'First Name *');
          jQuery('.page-id-103 input#avia_3_1').attr('placeholder','Last Name *');
          jQuery('.page-id-103 input#avia_4_1').attr('placeholder','Email *');
          jQuery('.page-id-103 input#avia_5_1').attr('placeholder','Skype ID');
          jQuery('.page-id-103 input#avia_6_1').attr('placeholder','Country *');
          jQuery('.page-id-103 input#avia_7_1').attr('placeholder','Company *');
          jQuery('.page-id-103 input#avia_8_1').attr('placeholder','Telephone');
          jQuery('.page-id-103 textarea#avia_9_1').attr('placeholder','Message *');
        });
      </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_placeholder');

    Let us know if you need anything that is related to this topic. Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: Customizing the Author Name and Updated on date #703526

    Hi,

    1) The one I gave is the solution go to Enfold > Blog Layout and under Blog meta elements and check Blog Post Author then uncheck others in that section.

    2) Kindly remove this code:

    echo '<span class="blog-modified-date">Last Updated on: '.get_the_modified_date("F j, Y").'</span>';
    echo '<span class="text-sep text-sep-cat blog-modified-date-text-sep">/</span>';

    and find this code:

    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
    echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>';
    echo '<span class="vcard author"><span class="fn">';
    	the_author_posts_link();
    echo '</span></span>';
    echo '</span>';
    echo '</span>';

    and replace it with:

    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
    echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>';
    echo '<span class="vcard author"><span class="fn">';
    	the_author_posts_link();
    echo '</span></span>';
    echo '</span>';
    echo '</span>';
    echo '<span class="text-sep text-sep-cat blog-modified-date-text-sep">|</span>';
    echo '<span class="blog-modified-date minor-meta">Last Updated on: '.get_the_modified_date("F j, Y").'</span>';

    3) The 1) solution should also affect this

    4) It doesn’t affect pages but it affects posts

    I think I will to check your settings to check what is causing the issue. Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Image alignment on mobile version #703356

    Hi,

    Try to add this code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:980px) {
      .avia-fullscreen-slider .avia-slideshow {
        max-height: 360px;
      }
    }
    
    @media only screen and (max-width:767px) {
      .avia-fullscreen-slider .avia-slideshow {
        max-height: 220px;
      }
    }

    The 360px is for ipad and 220px is for mobile, just adjust the values as you see fit. The images are actually centered, it’s just too big. Let us know if it works :)

    Best regards,
    Nikko

    in reply to: Showing all items despite section in portfolio categories. #703350

    Hey Wansink,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Layout wrong on the ipad (portrait) version #703345

    Hi,

    Glad that it’s fixed :)

    Best regards,
    Nikko

    in reply to: Facebook widget appears at product page (WooCommerce) #703277

    Hi,

    Glad that it’s fixed :)

    Best regards,
    Nikko

    in reply to: Layer slider multiple jquery issue and not hiding on mobile #703276

    Hi,

    Glad that it’s fixed :)

    Best regards,
    Nikko

    in reply to: Add Sidebar Controls to Custom Post Type #703275

    Hi Jeebar,

    Yes. If it doesn’t work then please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.

    Best regards,
    Nikko

    in reply to: Easy Slider works only on Preview, not when live #703269

    Hi,

    You have posted only links to your site. Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Pagination issue #703261

    Hi,

    It’s pretty hard to know and fix the issue if it’s only the front of the site that we can see. Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    Hey enfold4phil,

    That would be a bit complicated to do, since you have to add custom codes per device (desktop, tablet, mobile phones, etc) also once that is established and you need to add additional image, you will need to change all the custom codes again to adapt to the new quantity. I suggest using 4 columns instead of 3.

    Best regards,
    Nikko

    in reply to: Customizing the Author Name and Updated on date #703227

    Hi,

    You can set what information appears below the title in the post itself, just go to Enfold > Blog Layout and under Blog meta elements and check Blog Post Author then uncheck others in that section.

    Then go to Appearance > Editor and find these 2 files: loop-index.php and loop-author.php and find this code:

    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";

    and above it paste this code:

    echo '<span class="blog-modified-date">Last Updated on: '.get_the_modified_date("F j, Y").'</span>';
    echo '<span class="text-sep text-sep-cat blog-modified-date-text-sep">/</span>';

    Thanks for your patience and let us know if it works. :)

    Best regards,
    Nikko

    in reply to: Überschrift Produktseite #703174

    Hi!

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: contact form #703119

    Hi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Überschrift Produktseite #703118

    Hi!

    You’re welcome, try to add this code to Quick CSS (located Enfold > General Styling):

    h2.product_title.entry-title {
        font-size: 24px !important;
    }

    Kindly change the value as you see fit. Hope it helps :)

    Cheers!
    Nikko

    in reply to: Colored space below the socket #703115

    Hi C-LabMX,

    Glad we could help :)

    Cheers!
    Nikko

    in reply to: Responsive menu on top with shrinkingon logo on mobile #703113

    Hey jimbeamkentucky,

    Kindly add this code in Quick CSS (located in Enfold > General Styling):

    .responsive #top #wrap_all #header {
        position: fixed;
        top: 0;
    }

    Let us know if it works, if not then kindly give us a link to your site and post it in private content section :)

    Best regards,
    Nikko

    in reply to: Backslash characters stripped from pricing tables #703111

    Hey DJQuad,

    Can you replace:

    \

    to:

    <span class="backslash"></span>

    basically it looks like this:

    D:<span class="backslash"></span>Box

    and in functions.php add this code:

    function replace_to_backslash(){
    ?>
      <script>
        jQuery(window).load(function(){
          jQuery('.backslash').replaceWith('\');
        });
      </script>
    <?php
    }
    add_action('wp_footer', 'replace_to_backslash');

    This might be a bit hassle but it should work. Let us know if it helps. :)

    Best regards,
    Nikko

    in reply to: Anchors don't work when change the names #703102

    Hey Wisith,

    You also need to change the id to services from service.

    Best regards,
    Nikko

    in reply to: Colored space below the socket #703099

    Hey C-LabMX,

    Try to add this code in Quick CSS (located in Enfold > General Styling):

    img#wpstats, body > iframe {
        display: none;
    }

    Let us know if it works :)

    Best regards,
    Nikko

    in reply to: Product listings appearing in Posts #703097

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

Viewing 30 posts - 25,291 through 25,320 (of 25,536 total)