cathc
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tempera] disable parent linksAnyone out there who can tell me how to disable the parent links in my main menu in the Tempera theme? I just want the child (drop down) items to be linked. Thank you.
Here is the site:
https://alpha.promet.cloudlook.net/Forum: Themes and Templates
In reply to: [Tempera] disable parent linksThanks for the instructions. Maybe it’s my theme (Tempera), but it didn’t work. The # doesn’t stick when editing the permalink. It becomes 506-2, whatever that means.
And the parent page is still linked, now to itself which is just a placeholder default page. I want it to go to NOTHING. To not be a link at all. Hovering over the parent should do nothing but activate the dropdown menu with the hover, so the user will move the cursor down to select a submenu item.
Forum: Themes and Templates
In reply to: [Tempera] How to Change Header WidthJust figured it out! Under Tempera Settings/Header Settings/Header Image just check the “Keep header image aspect ratio.” It works!!
Forum: Themes and Templates
In reply to: [Tempera] How to Change Header WidthMy custom header image is sized at 1150px width. It incorporates a logo at the left. When viewed on mobile device, the header resizes but distorts miserably. I have tried deleting the header image, and instead uploading the same 1150-px-width gif via your custom logo upload. It does not show up at all this way. There is just a blank white area above the main nav bar. I have restored my banner via the header image upload. Would you take a look and advise at to how to make it responsive?
https://alpha.promet.cloudlook.net/
thanks!Forum: Plugins
In reply to: [Easy Google Fonts] Font not changingI have the same issue. I’m want to change all header fonts in my Tempera child theme to the Google Font called Noto Serif. Nothing changes. I am on the latest version of WP.
https://alpha.promet.cloudlook.net/thanks!
Forum: Themes and Templates
In reply to: [Tempera] Remove Powered by Tempera & WordPressThat worked! Thanks very much.
Forum: Themes and Templates
In reply to: [Tempera] Remove Powered by Tempera & WordPressThanks for replying. So now here is what my functions.php looks like now. I uploaded it to my child theme, mirroring the same place in the directory as the parent theme has its functions.php
It made my site page go blank.
<?php /* * Functions file * Calls all other required files * PLEASE DO NOT EDIT THIS FILE IN ANY WAY * Catherine to remove powered by.... * @package tempera */ // variable for theme version define ("TEMPERA_VERSION","1.0.0"); require_once(dirname(__FILE__) . "/admin/main.php"); // Load necessary admin files //Loading include files require_once(dirname(__FILE__) . "/includes/theme-setup.php"); // Setup and init theme require_once(dirname(__FILE__) . "/includes/theme-styles.php"); // Register and enqeue css styles and scripts require_once(dirname(__FILE__) . "/includes/theme-loop.php"); // Loop functions require_once(dirname(__FILE__) . "/includes/theme-meta.php"); // Meta functions require_once(dirname(__FILE__) . "/includes/theme-frontpage.php"); // Frontpage styling require_once(dirname(__FILE__) . "/includes/theme-comments.php"); // Comment functions require_once(dirname(__FILE__) . "/includes/theme-functions.php"); // Misc functions require_once(dirname(__FILE__) . "/includes/theme-hooks.php"); // Hooks require_once(dirname(__FILE__) . "/includes/widgets.php"); // Hooks require_once(dirname(__FILE__) . "/includes/ajax.php"); // Hooks function remove_some_actions () { remove_action( 'cryout_footer_hook' ,'tempera_site_info' ,99 ); } add_action('after_setup_theme', 'remove_some_actions'); ?>
Forum: Themes and Templates
In reply to: [Tempera] Remove Powered by Tempera & WordPressI want to remove the “Powered by….” line also, in the Tempera (child) theme.
mulli.bahr says:
Add the following to the functions.php child theme.function remove_some_actions () { remove_action( 'cryout_footer_hook' ,'tempera_site_info' ,99 ); } add_action('after_setup_theme', 'remove_some_actions');
Now, can you please tell me EXACTLY where to put this into my child theme’s function.php ? I don’t know php at all, so you if you can really spell it out, I won’t have to ask again.