Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@sarahf: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.et_pb_fullwidth_portfolio.et_pb_fullwidth_portfolio_carousel.et_pb_module.et_pb_bg_layout_dark.et_pb_fullwidth_portfolio_0 { display: none; } .page-id-151 .entry-header .entry-title { display: none; }
Regards,
MaheshMahesh
Participant@krywen: In which page is the issue occurring? I checked your site and seems all is working well, the header image is below the Header.
Regards,
MaheshJune 10, 2017 at 11:02 pm in reply to: Can I make my Gridalicious child theme work with Gridalicious Pro? #117300Mahesh
Participant@nemorino: Yes, you can use the same child theme functions. But you do need to make the child theme for Pro. I mean that WordPress recognizes that it is Gridalicious Pro’s child theme. I mean changing template-name in
style.css
Regards,
MaheshMahesh
Participant@fireflywebs: Yes, its kinda strange issue, using opacity is creating a problem. We are working on it and as soon as its fixed, we’ll let you know. For not, please use
rgba()
for opacity effect. Thank you for your patience.Regards,
MaheshJune 10, 2017 at 10:51 pm in reply to: Full Frame: Featured Content Background Image on Mobiles #117298Mahesh
Participant@jacusczolgista: I checked your site and cannot find the CSS I gave you above. Where have you put it? Let me know further.
Regards,
MaheshJune 10, 2017 at 10:46 pm in reply to: The language of the material on the main page (Hero Content and other) does not #117297Mahesh
Participant@paedagogisches-zentrum: Our developers are working on it. This may be released by Tuesday. The theme is translation ready and WPML compatible. And for Polylang we are working on it. That is why. You can either try WPML translation plugin (premium plugin).
Regards,
MaheshMahesh
Participant@masterchess: Please check in the link below:
Demo Site
in chome: http://bit.ly/2riJ9Kp
in edge: http://bit.ly/2r6X9rjYou Site
in chrome: http://bit.ly/2sfS5Fp
in edge: http://bit.ly/2rinbaA
This is how its displying on mine. I’m using 1920×1080 display.Regards,
MaheshJune 9, 2017 at 7:50 am in reply to: Full Frame: Featured Content Background Image on Mobiles #117196Mahesh
Participant@jacusczolgista: Add the following CSS:
@media screen and (max-width: 767px) { #featured-content { background-image: url("http://jacobyrugs.co.uk/wp-content/uploads/2017/06/Persian-Rug-Cleaning-Rug-Repair.jpg"); } }
Regards,
MaheshMahesh
Participant@wamukota: Thank you for using Clean Education Pro theme. Glad to know that you’ve figured it out. Have a nice day!
Regards,
MaheshJune 9, 2017 at 7:25 am in reply to: remove featured image from featured content and disable comments #117193Mahesh
Participant@cedmund84googlemail-com:
* Hiding featured images: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:#main .post .featured-image { display: none; }
* Disabling ability to comment:
Go to Dashboard=> Appearance=> Posts=> All Posts then Edit Post click on Screen Options on top right just beside Help. Some options will slide down, check on Discussion checkbox. Then scroll down to Discussion tab and uncheck Allow Comments. Click update.Regards,
MaheshJune 9, 2017 at 2:37 am in reply to: The language of the material on the main page (Hero Content and other) does not #117169Mahesh
Participant@paedagogisches-zentrum: Sorry, our team is working on this issue and the issue has been marked as top priority. This issue will be fixed in the next update. Thank you for your patience.
Regards,
MaheshJune 9, 2017 at 2:27 am in reply to: Full Frame: Featured Content Background Image on Mobiles #117168Mahesh
Participant@jacusczolgista: I guess 490×750 works fine.
Regards,
MaheshMahesh
Participant@dnelson503: 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/jomsom/reviews/#postform
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.Regards,
MaheshMahesh
Participant@serasta: For this, you’ll need to customize the theme further. I recommend you to hire a customizer.
Regards,
MaheshMahesh
Participant@masterchess: I hope I was able to resolve your issue. Would you mind taking a few minutes to write a review for me please? I’d really love to know what you think of my support.
https://wordpress.org/support/theme/catch-flames/reviews/#postform
Your feedback is deeply valued as it will help potential clients read about your experience and also help me improve.
Thank you so much for your help!Regards,
MaheshMahesh
Participant@rawikltd: 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? 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.
https://wordpress.org/support/theme/catch-kathmandu/reviews/#postform
Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.Regards,
MaheshJune 9, 2017 at 12:46 am in reply to: Catch Responsive Pro: CSS to Make Social Links Open in Current Window/Tab? #117153Mahesh
Participant@lambanlaa: This is not possible with CSS. For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s
functions.php
add the following CSS.if ( ! function_exists( 'catchresponsive_child_invalidcache' ) ) : /** * Template for Clearing Cache * */ function catchresponsive_child_invalidcache() { delete_transient( 'catchresponsive_social_icons' ); } // catchresponsive_child_invalidcache endif; add_action( 'after_setup_theme', 'catchresponsive_child_invalidcache' ); function catchresponsive_get_social_icons(){ if ( ( !$output = get_transient( 'catchresponsive_social_icons' ) ) ) { $output = ''; $options = catchresponsive_get_theme_options(); // Get options //Pre defined Social Icons Link Start $pre_def_social_icons = catchresponsive_get_social_icons_list(); foreach ( $pre_def_social_icons as $key => $item ) { if ( isset( $options[ $key ] ) && '' != $options[ $key ] ) { $value = $options[ $key ]; if ( 'email_link' == $key ) { $output .= '<a class="genericon_parent genericon genericon-'. sanitize_key( $item['genericon_class'] ) .'" target="_blank" title="'. esc_attr__( 'Email', 'catch-responsive-pro') . '" href="mailto:'. antispambot( sanitize_email( $value ) ) .'"><span class="screen-reader-text">'. __( 'Email', 'catch-responsive-pro') . '</span> </a>'; } elseif ( 'skype_link' == $key ) { $output .= '<a class="genericon_parent genericon genericon-'. sanitize_key( $item['genericon_class'] ) .'" target="_blank" title="'. esc_attr( $item['label'] ) . '" href="'. esc_attr( $value ) .'"><span class="screen-reader-text">'. esc_attr( $item['label'] ). '</span> </a>'; } elseif ( 'phone_link' == $key || 'handset_link' == $key ) { $output .= '<a class="genericon_parent genericon genericon-'. sanitize_key( $item['genericon_class'] ) .'" target="_blank" title="'. esc_attr( $item['label'] ) . '" href="tel:' . preg_replace( '/\s+/', '', esc_attr( $value ) ) . '"><span class="screen-reader-text">'. esc_attr( $item['label'] ) . '</span> </a>'; } else { $output .= '<a class="genericon_parent genericon genericon-'. sanitize_key( $item['genericon_class'] ) .'" target="_self" title="'. esc_attr( $item['label'] ) .'" href="'. esc_url( $value ) .'"><span class="screen-reader-text">'. esc_attr( $item['label'] ) .'</span> </a>'; } } } //Pre defined Social Icons Link End //Custom Social Icons Link Start for( $i = 1; $i <= $options['custom_social_icons'] ; $i++ ) { $has_hover = ''; $image_hover = ''; if ( ! empty( $options['custom_social_icon_image_'. $i] ) ) { $image = $options['custom_social_icon_image_'. $i]; if ( ! empty( $options['custom_social_icon_image_hover_'. $i] ) ) { $image_hover = $options['custom_social_icon_image_hover_'. $i]; $has_hover = " has-hover"; } //Checking Link if ( ! empty( $options['custom_social_icon_link_'. $i] ) ) { $link = $options['custom_social_icon_link_'. $i]; } else { $link = '#'; } //Checking Title if ( !empty ( $options['custom_social_icon_title_'. $i]) ) { $title = $options['custom_social_icon_title_'. $i]; } else { $title = ''; } //Custom Social Icons $output .= '<a id="custom-icon-'. $i .'" class="custom-icon' . $has_hover . '" target="_blank" title="' . esc_attr( $title ) . '" href="' . esc_url( $link ) . '"> <img alt="' . esc_attr( $title ) . '" class ="icon-static" src="' . esc_url( $image ) . '" />'; if (isset ( $image_hover ) && '' != $image_hover ) { $output .= '<img alt="' . esc_attr( $title ) . '" class ="icon-hover" src="' . esc_url( $image_hover ) . '" />'; } $output .= '</a>'; } } //Custom Social Icons Link End set_transient( 'catchresponsive_social_icons', $output, 86940 ); } return $output; } // catchresponsive_get_social_icons
Regards,
Mahesh -
AuthorPosts