Forum Replies Created

Viewing 15 posts - 511 through 525 (of 1,171 total)
  • Author
    Posts
  • in reply to: gallery grey overlay and text color #17617
    themearile
    Keymaster

    Hi Ismo

    Glad to hear it. We hope you are enjoying the ArileWP theme.

    Please help us improve our customer satisfaction by writing a quick review https://wordpress.org/support/theme/arilewp/reviews/?filter=5. We would be extremely grateful.

    Please let me know if you need any further assistance..!

    Thank you for your time.

    Thanks,
    ThemeArile

    in reply to: gallery grey overlay and text color #17523
    themearile
    Keymaster

    Hi Ismo

    Thanks for contacting us.

    Please add the CSS code below in the Additional CSS Box. Please go to the Appearance => Customize => Additional CSS then paste the CSS here and click to Publish button.

    .blocks-gallery-grid .blocks-gallery-image figcaption, 
    .blocks-gallery-grid .blocks-gallery-item figcaption, 
    .wp-block-gallery .blocks-gallery-image figcaption, 
    .wp-block-gallery .blocks-gallery-item figcaption {
    	background: none;
    	color: #000;
    }

    Let us know if it works.

    Thanks

    • This reply was modified 4 years, 6 months ago by themearile.
    in reply to: Header ticker #16978
    themearile
    Keymaster

    Hi Rob

    Please use the below plugin to display the information of every page on the top.

    https://wordpress.org/plugins/responsive-welcome-bar/

    Thanks

    • This reply was modified 4 years, 6 months ago by themearile.
    in reply to: Header ticker #16918
    themearile
    Keymaster

    Please check your email id.

    themearile
    Keymaster

    Hi Hans

    If you want to use the child theme of the ArileWP Pro theme to add the above code then we have already provided the ArileWP Pro Child Theme.

    So please download the ArileWP Pro Child Theme from your themearile account and add the above code in the child theme functions.php file.

    Let us know if it works.

    Thanks

    themearile
    Keymaster

    Hi Hans

    If you want to add the link in shortcode content then follow the below screenshot.

    http://prntscr.com/118riij

    Let us know if it works.

    Thanks

    themearile
    Keymaster

    Hi Hans

    Please follow the below help article to add the custom link to the menu.

    https://mindseyedesign.co.uk/custom-links-wordpress-menu/

    Let us know if it works.

    Thanks

    themearile
    Keymaster

    Hi Hans

    Please add this code at the end of the code in the functions.php file.

    Thanks

    themearile
    Keymaster

    Hi Hans Goutier.

    Please did not add the above code because this code has some errors. So please add the below code for your work.

    /* Automatically set the image Title, Alt-Text, Caption & Description upon upload
    ———————————————————————–*/
    
    add_action( 'add_attachment', 'my_set_image_meta_upon_image_upload' );
    
    function my_set_image_meta_upon_image_upload( $post_ID ) {
    // Check if uploaded file is an image, else do nothing
    if ( wp_attachment_is_image( $post_ID ) ) {
    $my_image_title = get_post( $post_ID )->post_title;
    // Sanitize the title: remove hyphens, underscores & extra
    // spaces:
    $my_image_title = preg_replace( '%\s*[-_\s]+\s*%', ' ',
    $my_image_title );
    // Sanitize the title: capitalize first letter of every word
    // (other letters lower case):
    $my_image_title = ucwords( strtolower( $my_image_title ) );
    // Create an array with the image meta (Title, Caption,
    // Description) to be updated
    // Note: comment out the Excerpt/Caption or Content/Description
    // lines if not needed
    $my_image_meta = array(
    // Specify the image (ID) to be updated
    'ID' => $post_ID,
    // Set image Title to sanitized title
    'post_title' => $my_image_title,
    // Set image Caption (Excerpt) to sanitized title
    
    'post_excerpt' => $my_image_title,
    // Set image Description (Content) to sanitized title
    'post_content' => $my_image_title,
    );
    
    // Set the image Alt-Text
    update_post_meta( $post_ID, '_wp_attachment_image_alt',
    $my_image_title );
    // Set the image meta (e.g. Title, Excerpt, Content)
    wp_update_post( $my_image_meta );
    }
    }

    Let us know if it works.

    Thanks

    themearile
    Keymaster

    Hi MAN KIT WONG

    Thanks for contacting us.

    Please first reset your site and now import the demo7 using the below help article.

    https://helpdoc.themearile.com/?docs=arilewp-pro/one-click-demo-import

    Let us know if it works.

    Thanks

    • This reply was modified 4 years, 7 months ago by themearile.
    in reply to: Change Products to Product Categories on Home Page #16352
    themearile
    Keymaster

    Hi Christopher

    Thanks for contacting us. Don’t worry we are here to help you.

    Please share the screenshot of the products you want to display on the home page. And also please share your site URL so we can take a look and assist you better.

    Thanks

    themearile
    Keymaster

    Hi Shirley

    Don’t worry we are here to help you.

    Please see the screenshot https://prnt.sc/10zorvi it’s working well. This will be working great on the mobile devices as per your requirement.

    Thanks

    in reply to: Reading time #16312
    themearile
    Keymaster

    Hi Hans

    There is no such option in the theme but you can follow the below help articles to find the reading time of an article.

    https://www.wpbeginner.com/plugins/how-to-display-estimated-post-reading-time-in-your-wordpress-posts/

    Probably this will work for you.

    Thanks

    in reply to: Sección Testimonios no permite agregar nuevos. #16244
    themearile
    Keymaster

    Hi  ANTONIO

    Please let us know are you install the latest version of the ArileWP Pro theme from themearile account.

    If you have updated with the latest version then please clear the browser cache because it’s working perfectly on our end.

    Thanks

    • This reply was modified 4 years, 7 months ago by themearile.
    in reply to: standard menu to hamburger #15984
    themearile
    Keymaster

    Hi Jan Petrus

    Ok please add the below CSS code in the Additional CSS box to display like the above screenshot.

    Please go to the Appearance => Customize => Additional CSS then paste the CSS here and click to Publish button.

    @media (min-width: 992px) and (max-width: 1024px) {
    .navbar .row.align-self-center .align-self-center {
    display: inline-block;
    float: left;
    width: 30%;
    }
    .navbar-light .navbar-brand img {
    width: 200px;
    height: auto;
    }
    .navbar-expand-lg .navbar-collapse {
    width: 70%;
    }
    .navbar .nav {
    margin-bottom: 1.438rem;
    margin-top: 1.438rem;
    float: right;
    width: 100%;
    }
    }

    Let us know if it works.

    Thanks

Viewing 15 posts - 511 through 525 (of 1,171 total)