Forum Replies Created
-
AuthorPosts
-
sapana
Member@fireflywebs:Hello, there,I hope I was able to resolve your issue. If it’s not too much trouble,
I have a quick request: could you please leave an honest review?https://wordpress.org/support/theme/lucida/reviews/#new-post.Your review will help others know what to expect when they’re looking
for the support I offer. Even a sentence or two would be hugely appreciated.
Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.Kind Regards,
Sapanasapana
Member@wouwonline:Go to=> Appearance=> Customize=> Social links=> Custom Links=>Upload the Whats app icon in image section also provide the necessary link.
Let me know if this helps you out!Kind Regards
SapanaNovember 11, 2018 at 10:42 pm in reply to: Make page/post background transparent with no borders #159024sapana
Member@dward1958:Hello, there,
I hope I was able to resolve your issue. If it’s not too much trouble,I have a quick request: could you please leave an honest review?https://wordpress.org/support/theme/catch-box/reviews/#new-post
Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.Thanks, and if there’s anything else at all that I can do to help,don’t hesitate to let me know.Kind Regards,
Sapanasapana
Member@tbhesh:Hello, there,
I hope I was able to resolve your issue. If it’s not too much trouble,I have a quick request: could you please leave an honest review?https://wordpress.org/support/theme/fotografie/reviews/#new-post
Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.Thanks, and if there’s anything else at all that I can do to help,don’t hesitate to let me know.Kind Regards,
Sapanasapana
Member@wouwonline: This seems to be plugin related issue. I suggest you to contact with respective plugin support forum. I think they can help you out.
Kind Regards,
Sapanasapana
Member@ta0102: Can you please send me your screen size, so that I can fix it in center.
Kind Regards,
Sapanasapana
Member@fireflywebs: Font Size and Color of the ” Go to” cannot be controlled, It differs from browser and it is control by browser.
Kind Regards,
SapanaNovember 6, 2018 at 2:03 am in reply to: Make page/post background transparent with no borders #158649sapana
Member@dward1958:Go to=>Appearance=> Customize=> Additional CSS and add the following CSS code
.site { background:url('http://localhost/support/wp-content/uploads/2011/07/dsc09114.jpg') !important; } #branding { background:none !important; } #main { background:none !important; } article { background:none !important; }Let me know if this works out!
Kind Regards,
Sapanasapana
Member@ta0102:/* To display Copyright text in one line*/
Go to=>Appearance=> Customize=> Additional CSS and add the following CSS code#footer-left-content, #footer-right-content { font-size: 9px !important; }Let me know if this works out!
Kind Regards,
Sapanasapana
Membersapana
Member@senakurkcuoglu: You can add the filter to add those effect. Please post your in site url so that I can look into those issue and provide you the possible solution.
Kind Regards,
SapanaNovember 5, 2018 at 11:17 pm in reply to: Make page/post background transparent with no borders #158621sapana
Member@dward1958:Go to=>Appearance=> Customize=>Background Image=>Select the background image you want to add.
Let me know if this helps you out!
Kind Regards,
Sapanasapana
Member@dheld:Please post in your site URl so that I can look into those issues.
Kind Regards,
Sapanasapana
Member@anandkota915gmail-com: E commerce theme called Catch Store pro is going to be released soon. I will let you know after the theme is released or you can follow our site. Best plugin for the E-commerce site is Woo Commerce.
Kind Regards,
Sapanasapana
Member@ta0102:It is better to upgrade to pro or you can also hire a customizer to get it done.
1)/* To display text below the menu or to display below header image*/
-I suggest you to upgrade to Pro,this feature is also available in pro version.2)/* To display featured content in center*/
-This issue has been already fixed.3)/*Phone number is not displayed*/
-It’s seems to be fine in mine .Can you please send me screenshot where the phone number is not displayed.Kind Regards,
SapanaNovember 4, 2018 at 10:55 pm in reply to: Site Identity, Logo, Title, Description not centered. #158511sapana
Member@tobiaslavely:It’s working fine in my Iphone , you can check out the screenshot. Can you Please clear your cache or send me screenshot of your device if does not work out.
Kind Regards,
Sapanasapana
Member@senakurkcuoglu: Go to=> Appearance=> Customize=>Header Media=>Header Image=> Select the Add New Image
Let me know if this helps you out!Kind Regards,
Sapanasapana
Member@djordje:You can create the page to display the news and select that featured page to be display the recent news.Let me know if this helps you out!
Kind Regards,
Sapanasapana
Member@fireflywebs:Please post in your site Url and elaborate your issues so that I can look into those issues.
Kind Regards,
Sapanasapana
Member@fireflywebs: Go to => Lucida-pro-child => funtions.php and add the following Code.
function lucida_page_post_category_content( $options ) { global $post; $no_of_post = 0; // for number of posts $post_list = array();// list of valid post/page ids $layouts = 3; $quantity = $options['featured_content_number']; $type = $options['featured_content_type']; $show_content = $options['featured_content_show']; $output = '<div class="featured_content_slider_wrap">'; if( 'layout-four' == $options['featured_content_layout'] ) { $layouts = 4; } elseif ( 'layout-two' == $options['featured_content_layout'] ) { $layouts = 2; } $args = array( 'post_type' => 'any', 'orderby' => 'post__in', 'ignore_sticky_posts' => 1 // ignore sticky posts ); //Get valid number of posts if( 'post' == $type || 'page' == $type ) { for( $i = 1; $i <= $quantity; $i++ ){ $post_id = ''; if( 'post' == $type ) { $post_id = isset( $options['featured_content_post_' . $i] ) ? $options['featured_content_post_' . $i] : false; } elseif( 'page' == $type ) { $post_id = isset( $options['featured_content_page_' . $i] ) ? $options['featured_content_page_' . $i] : false; } if ( $post_id && '' != $post_id ) { $post_list = array_merge( $post_list, array( $post_id ) ); $no_of_post++; } } $args['post__in'] = $post_list; } elseif( 'category' == $type ) { $no_of_post = $quantity; $args['category__in'] = $options['featured_content_select_category']; } if ( 0 == $no_of_post ) { return; } $args['posts_per_page'] = $no_of_post; $loop = new WP_Query( $args ); $i=0; while ( $loop->have_posts()) : $loop->the_post(); $i++; $title_attribute = the_title_attribute( array( 'before' => esc_html__( 'Go to: ', 'lucida-pro' ), 'echo' => false ) ); $excerpt = get_the_excerpt(); $output .= ' <article id="featured-post-' . $i . '" class="post hentry post">'; //Default value if there is no first image $image = '<img class="wp-post-image" src="'.esc_url( get_template_directory_uri() ).'/images/gallery/no-featured-image-1920x800.jpg" >'; if ( has_post_thumbnail() ) { $image = get_the_post_thumbnail( $post->ID, 'lucida-landscape', array( 'title' => $title_attribute, 'alt' => $title_attribute ) ); } else { //Get the first image in page, returns false if there is no image $first_image = lucida_get_first_image( $post->ID, 'lucida-landscape', array( 'title' => $title_attribute, 'alt' => $title_attribute ) ); //Set value of image as first image if there is an image present in the page if ( '' != $first_image ) { $image = $first_image; } } $output .= ' <figure class="featured-homepage-image"> <a href="' . esc_url( get_permalink() ) . '" title="' . $title_attribute . '"> '. $image .' </a> </figure>'; $output .= ' <div class="entry-container"> <header class="entry-header"> <h2 class="entry-title"> <a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . the_title( '','', false ) . '</a> </h2> </header>'; if ( 'excerpt' == $show_content ) { $output .= '<div class="entry-summary"><p>' . $excerpt . '</p></div><!-- .entry-summary -->'; } elseif ( 'full-content' == $show_content ) { $content = apply_filters( 'the_content', get_the_content() ); $content = str_replace( ']]>', ']]>', $content ); $output .= '<div class="entry-content">' . wp_kses_post( $content ) . '</div><!-- .entry-content -->'; } $output .= ' </div><!-- .entry-container --> </article><!-- .featured-post-'. $i .' -->'; endwhile; wp_reset_postdata(); return $output; }This should change your Permalink to:=> Go to. Let me know if this works out!
Kind Regards,
Sapana -
AuthorPosts
