Forum Replies Created

Viewing 15 posts - 91 through 105 (of 137 total)
  • Author
    Posts
  • in reply to: Share Blog Posts? #2552
    arjun
    Keymaster

    Hello,

    We don’t have share option on top header that’s just social link for your website, you can add that by going to Appearance=> Menu after that add custom menu on custom menu add custom link e.g for facebook use this link facebook.com and for twitter use this link twitter.com and save it, after that you can see facebook and twitter icon on top header.

    To share your blog post its easy use this plugin, https://wordpress.org/plugins/easy-social-sharing/ if you have any confuse then send us wp-admin login details and website url to our email amplethemes@gmail.com after that we will help you to set all this.

    Thank you,

    in reply to: How do I remove duplicate page titles? #2518
    arjun
    Keymaster

    sorry for late reply :
    go to customize > additional css > add below css on there and publish it

    h3.entry-title {
    display: none;
    }

    if you have any problem let me know at amplethemes@gmail.com

    in reply to: I've entered the License Key but it turns out error #2457
    arjun
    Keymaster

    okay can you give us your login details at amplethemes@gmail.com , we will help you to activate a license for your site

    in reply to: How to reproduce the demo content? #2456
    arjun
    Keymaster

    hello mugabi jafari,
    due to problem on your hosting problem this problem occurs, can you provide your login details on our mail at amplethemes@gmail.com ? our team will setup demo data for you.

    in reply to: Parent Pages #2349
    arjun
    Keymaster

    you can choose parent page by drop down option https://prnt.sc/mpx3fs and I think this theme is not based on parent pages and child pages concept, and you can see the documentation for setup theme https://documentation.amplethemes.com/ample-business-pro/

    in reply to: Parent Pages #2347
    arjun
    Keymaster

    hello , you can find on the right side of pages editor https://prnt.sc/mpwmkt.

    in reply to: Top Menu #2344
    arjun
    Keymaster

    Hello,

    Please check this screenshot, link https://www.amplethemes.com/wp-content/uploads/2019/02/Screenshot_20.png, if checkbox is not check then check that. Still if its not working then send us wp-admin login details to our email amplethemes@gmail.com we will solve that issues.

    Thank you

    in reply to: There is no Frequently Asked Questions heading in the entries. #2303
    arjun
    Keymaster

    Hello,

    There is no any issues in our theme, for that we have to check in your server can you please provide us your wp-admin login details and website url in our email amplethemes@gmail.com. After that our support team will find and fix your issues.

    Thank you,

    in reply to: Logo #2280
    arjun
    Keymaster

    hello Thompson,
    we are discussing it with our developer’s team, we will update these feature soon in our theme please wait for next update, sorry for late reply

    in reply to: Logo #2248
    arjun
    Keymaster

    If you are using pro version , there is option logo + tagline https://prnt.sc/mllgcy choose them, For logo with left side need to customization

    in reply to: Logo #2247
    arjun
    Keymaster

    if you are using pro version , there is option logo + tagline https://prnt.sc/mllgcy choose them, In free version need to customization

    in reply to: Blog #2246
    arjun
    Keymaster

    use this css ,go to customize > additional css > add css and publish it

    span.post-meta {
    display: none;
    }

    in reply to: Social Icon #2199
    arjun
    Keymaster

    hello,
    For setup social icon on header follow this tutorial https://www.youtube.com/watch?v=HDlVsDEqan0&t=2s , for footer need to customization, or you need to use social widgets to footer you can use social widgets to the footer area

    • This reply was modified 5 years, 9 months ago by arjun.
    in reply to: LINK COLOR #2146
    arjun
    Keymaster

    hello add this on additional CSS for the removed box around an article:

    .blog_vlog-post-wrapper {
    border: 1px solid #25202000;
    }
    #secondary .widget {
    border: 1px solid #0c0c0c00;
    margin: 0 0 50px;
    padding: 15px;
    }

    For support HTML tag on the main page you need to edit code, have knowledge about theme code file? if Then add this code on ”function.php”
    if you are not familiar to code please provide you wp-admin details at ”’amplethemes@gmail.com”’ ,we will help you add this code,if you are familiar please add this:

    function wpse_allowedtags() {
        // Add custom tags to this string
            return '<a>, <script>,<style>,<br>,<em>,<i>,<ul>,<ol>,<li>,<a>,<p>,<img>,<video>,<audio>';
        }
    
    if ( ! function_exists( 'wpse_custom_wp_trim_excerpt' ) ) : 
    
        function wpse_custom_wp_trim_excerpt($wpse_excerpt) {
        global $post;
        $raw_excerpt = $wpse_excerpt;
            if ( '' == $wpse_excerpt ) {
    
                $wpse_excerpt = get_the_content('');
                $wpse_excerpt = strip_shortcodes( $wpse_excerpt );
                $wpse_excerpt = apply_filters('the_content', $wpse_excerpt);
                $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt);
                $wpse_excerpt = strip_tags($wpse_excerpt, wpse_allowedtags()); /*IF you need to allow just certain tags. Delete if all tags are allowed */
    
                //Set the excerpt word count and only break after sentence is complete.
                    $excerpt_word_count = 75;
                    $excerpt_length = apply_filters('excerpt_length', $excerpt_word_count);
                    $tokens = array();
                    $excerptOutput = '';
                    $count = 0;
    
                    // Divide the string into tokens; HTML tags, or words, followed by any whitespace
                    preg_match_all('/(<[^>]+>|[^<>\s]+)\s*/u', $wpse_excerpt, $tokens);
    
                    foreach ($tokens[0] as $token) { 
    
                        if ($count >= $excerpt_word_count && preg_match('/[\,\;\?\.\!]\s*$/uS', $token)) {
                        // Limit reached, continue until , ; ? . or ! occur at the end
                            $excerptOutput .= trim($token);
                            break;
                        }
    
                        // Add words to complete sentence
                        $count++;
    
                        // Append what's left of the token
                        $excerptOutput .= $token;
                    }
    
                $wpse_excerpt = trim(force_balance_tags($excerptOutput));
    
                   
                    $excerpt_more = apply_filters('excerpt_more', ' ' . $excerpt_end); 
    
                    //$pos = strrpos($wpse_excerpt, '</');
                    //if ($pos !== false)
                    // Inside last HTML tag
                    //$wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */
                    //else
                    // After the content
                    $wpse_excerpt .= $excerpt_end; /*Add read more in new paragraph */
    
                return $wpse_excerpt;   
    
            }
            return apply_filters('wpse_custom_wp_trim_excerpt', $wpse_excerpt, $raw_excerpt);
        }
    
    endif; 
    
    remove_filter('get_the_excerpt', 'wp_trim_excerpt');
    add_filter('get_the_excerpt', 'wpse_custom_wp_trim_excerpt');
    • This reply was modified 5 years, 10 months ago by arjun.
    • This reply was modified 5 years, 10 months ago by arjun.
    • This reply was modified 5 years, 10 months ago by arjun.
    • This reply was modified 5 years, 10 months ago by arjun.
    • This reply was modified 5 years, 10 months ago by arjun.
    in reply to: The slider image doesnt show #2145
    arjun
    Keymaster

    Hello,

    To active slider at first go to Appearance=> Customize, then go to Saraswati Blog Theme Options then Slider Section after that choose category for the slider. After that it will display slider.

    Thank you,

Viewing 15 posts - 91 through 105 (of 137 total)