Forum Replies Created
-
AuthorPosts
-
Skandha
Participant@valelotartaro: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
@media screen and (min-width:1024px) and (max-width:1212px) { .navigation-classic #header-wrapper:not(.header-top) .site-navigation a { padding:26px 15px; } }Let me know if this resolves the issue.
Kind Regards,
SkandhaMarch 14, 2019 at 2:26 am in reply to: The arrows in the dropdown meny pointing upp instead of down!? #167832Skandha
Participant@johanna: The default feature of this theme is Menu is fixed at the top when you scroll down the page. Did you make any changes to the theme file as the menu doesnot seem to fixed on your site?
Please check out the demo of the theme. https://catchthemes.com/demo/clean-fotografie/Kind Regards,
SkandhaSkandha
Participant@beltan: You seem to be using 0be88.css. Are you using this as additional css? This css file seems to be a reason the cart layout is showing up differently.
Kind Regards,
SkandhaSkandha
Participant@mithrand: You seem to added the following piece of CSS Code due to which the page titles are not showing up.
.singular-content-wrap .entry-title { display:none; }Removing it should resolve the issue.
Let me know if this is what you want!
Kind Regards,
SkandhaSkandha
Participant@beltan: First you will need to create a child theme. If you do not know how to create a child theme you can Generate Child Theme Plugin. Install and Activate the plugin.
Go to => Dashboard => Generate Child Theme => Select Parent Theme as Foodie World Pro and fill other fields and Click Generate.
This will generate and active the child theme.Now, Go to => Child Theme Folder => functions.php and add the following Code.
function foodie_world_header_title() { if ( is_front_page() ) { echo wp_kses_post( get_theme_mod( 'foodie_world_header_media_title' ) ); } elseif ( is_singular() ) { the_title(); } elseif ( is_404() ) { esc_html_e( 'Oops! That page can’t be found.', 'foodie-world-pro' ); } elseif ( is_search() ) { /* translators: %s: search query. */ printf( esc_html__( 'Search Results for: %s', 'foodie-world-pro' ), '<span>' . get_search_query() . '</span>' ); } elseif( class_exists( 'WooCommerce' ) && is_woocommerce() ) { woocommerce_page_title(); } else { echo 'Recipes'; } }Let me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@beltan: Hello there,
Can you post in your site URL so that I can look into the issue?Kind Regards,
SkandhaSkandha
Participant@beltan: Hello there,
To edit the Archives text you will need create a child theme and do a little bit of customization. Let me know if you are familiar with child theme customization so that I can guide you, otherwise I suggest you to hire a customizer.To customize the Recent Posts text
Go to => Appearance => Customize => Theme Options => Homepage/Frontpage Settings => Recent Posts Heading => Edit the text and publish.Let me know if this helps you out!
Kind Regards,
SkandhaMarch 13, 2019 at 11:46 pm in reply to: How do I customize the social buttons within the menu? #167823Skandha
Participant@gammabrian: To have social media icons
Go to => Appearance => Customize => Menus => View All Locations => Social Menu => Create New Menu => Add items => Add Custom links to display your social iconsLet me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@infoeyeamamazed-com: Please post in your site URL so that I can look into the issue.
Kind Regards,
SkandhaMarch 13, 2019 at 7:24 am in reply to: The arrows in the dropdown meny pointing upp instead of down!? #167776Skandha
Participant@johanna: Hello Johanna,
Please post in your site URL so that I can look into the issue.Kind Regards,
SkandhaSkandha
Participant@rodeboy: Hello Chris, 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-fullscreen/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. Have a good day! 🙂Kind Regards,
SkandhaSkandha
Participant@tech-tfie: Hello there,
Please post in your site URL so that I can look into the issue.Kind Regards,
SkandhaSkandha
Participant@valelotartaro: You can upload the image in Dropbox or similar kind of workspace and then post the link here.
Kind Regards,
SkandhaSkandha
Participant@jennifersimsdesign-com-au: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
#menu-item-2102 a { background: url('http://armadaleps.wa.edu.au/wp-content/uploads/2019/03/PTO_Logo.gif'); background-position: center center; }Let me know if this is what you want!
Kind Regards,
SkandhaSkandha
Participant@mithrand: Hello there,
Please post in your site URL so that I can look into the issue.Kind Regards,
SkandhaMarch 12, 2019 at 7:33 am in reply to: Page changes not taking affect. Formatting not changing either. #167711Skandha
Participant@dbatty: Hello Derek,
Yes updates are only available for 1 year after purchase, after that you will need to renew your theme subscription.I could try looking at the problem if you provide you WP admin credentials. I will contact you shortly by email.
Kind Regards,
SkandhaSkandha
Participant@uschelbert: 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/solid-construction/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. Have a good day! 🙂Kind Regards,
SkandhaSkandha
Participant@jennifersimsdesign-com-au: Hello Jennifer,
Please post in your site URL and clarity which menu item you are referring to and what changes you would like to make to that menu item.Kind Regards,
SkandhaSkandha
Participant@uschelbert: Hello there,
Sorry for the late reply.
First of all
Go to => Child Theme Folder => functions.php and add the following Code.function polylang_translation() { if ( function_exists( 'pll_register_string' ) ) { $headline = get_theme_mod('solid_construction_featured_content_archive_title', esc_html__( 'Featured Content', 'solid-construction-pro') ); $sub_headline = get_theme_mod('solid_construction_featured_content_sub_title', esc_html__( 'Here you can showcase the x number of featured contents', 'solid-construction-pro') ); pll_register_string( 'solid_construction_featured_content_archive_title', $headline, 'Solid Construction Pro' ); pll_register_string( 'solid_construction_featured_content_sub_title', $sub_headline, 'Solid Construction Pro' ); $quantity = get_theme_mod( 'solid_construction_featured_content_number', 3 ); for ( $i = 1; $i <= $quantity; $i++ ) { $title = get_theme_mod( 'solid_construction_featured_content_title_' . $i ); $content = get_theme_mod( 'solid_construction_featured_content_content_' . $i ); $more_button = get_theme_mod( 'solid_construction_featured_content_more_button_text_' . $i ); pll_register_string( 'solid_construction_featured_content_title_', $title, 'Solid Construction Pro' ); pll_register_string( 'solid_construction_featured_content_content_', $content, 'Solid Construction Pro' ); pll_register_string( 'solid_construction_featured_content_more_button_text_', $more_button, 'Solid Construction Pro' );//die('aaaa'); } } } add_action ( 'admin_init', 'polylang_translation' );Now you will find the Featured Content strings in Languages => String Translations.
You should be able to add translated strings for Featured Content section.To make the translated text on your site when you change the language.
Go to => Child Theme Folder => create a folder template-parts => Under template-parts create another featured-content and under featured-content folder
create two files display-featured.php and content-image.phpAdd the code in this link to display-featured.php.
and add the code in this link to content-image.php.Now you should be able to translate the featured content section.
Let me know if this works out.
Kind Regards,
SkandhaMarch 12, 2019 at 1:24 am in reply to: Page changes not taking affect. Formatting not changing either. #167692Skandha
Participant@dbatty: To be on the safe side I suggest you to back up your theme before update. For that you can use Catch Web Tools plugin. Install and Activate the plugin. Download the theme from your https://catchthemes.com/my-account/ page.
Now,
Go to => Dashboard => Catch Web Tools => Activate Catch Updater Module => Upload Plugin => Browse and select the .zip file you downloaded => Click on More Options and Create Backup as Yes and finally click Install Now.This will update the theme and also create a back up of the theme file in the Media Tab on your Dashboard.
Let me know if this works out!
Kind Regards,
Skandha -
AuthorPosts
