Thomas
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] redirect all eventsThanks
Forum: Themes and Templates
In reply to: [Tiny Framework] Header image disapperedHey, thank you for the advice re. security. Very helpful ??
Forum: Themes and Templates
In reply to: [Tiny Framework] Header image disapperedHi Tomas,
I moved the entire installation into the root folder. It works now. Not sure what the problem was. I like the idea of having the installation in a sub-folder. I heard it’s more secure and I personally think it looks tidier. But that’s just me ??Thanks again for your support
Forum: Themes and Templates
In reply to: [Tiny Framework] Header image disapperedI have done it many times and never had a problem. Maybe I need to create a new child theme but I’ll give your idea a go first. I’ll let you know.
Thanks for your help
Forum: Themes and Templates
In reply to: [Tiny Framework] Header image disapperedThanks for your quick reply.
I’m not sure what you mean by ‘re-assign’ the header from Customizer? but I can’t change the header image in Customizer. If I activate the parent theme it works; if I use the child theme, it doesn’t.I forgot to tell, when I move everything back to the sub-directory and change the index.php from “require (‘./joerg/wp-blog-header.php)” to “require (‘./wp-blog-header.php)” it works again.
Forum: Themes and Templates
In reply to: [Kyma] child theme cssHi,
yes, it seems to work. However, more than 500 files is quite a lot just for a child theme?
Don’t get me wrong, I really appreciate your effort and personally I really like your theme, but under the given circumstances (website has to be in German + time restrictions) I have to find an easier solution that meet my client’s needs.
Regards
Forum: Themes and Templates
In reply to: [Kyma] child theme cssHi,
sorry, didn’t had much time last week to have a proper look. Done your last update but it didn’t fix my problem completely. However, it’s working fine except under Kyma Options – can’t make or save any changes.
I really appreciate your offer but I prefer to get my own child theme to work. As it is a new project I can’t tell exactly what I would like to changed – colours, fonts, maybe margins and padding…
I’ll activate my child theme again for you to have a look at it.
https://champions-team.media/Created child theme as followed:
1. style.css
/* Theme Name: Kyma Child Theme URI: https://www.webhuntinfotech.com/ Description: This is a custom child theme I have created. Author: Thomas Anstoetz URI: https://www.champions-team.media/ Template: kyma Version: 0.1 */
2. functions.php
<?php add_action( 'wp_enqueue_scripts', 'child_enqueue_styles',99); function child_enqueue_styles() { $parent_style = 'parent-style'; wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style',get_stylesheet_directory_uri() . '/custom.css', array( $parent_style )); } if ( get_stylesheet() !== get_template() ) { add_filter( 'pre_update_option_theme_mods_' . get_stylesheet(), function ( $value, $old_value ) { update_option( 'theme_mods_' . get_template(), $value ); return $old_value; // prevent update to child theme mods }, 10, 2 ); add_filter( 'pre_option_theme_mods_' . get_stylesheet(), function ( $default ) { return get_option( 'theme_mods_' . get_template(), $default ); } ); } ?>
Thanks for your help and patience
Thomas
Forum: Themes and Templates
In reply to: [Kyma] change Home in menuThank you, problem solved.
I just forgot to select the location ??
So far, it looks like a great theme. Thanks again
Forum: Themes and Templates
In reply to: [Make] Turn turn off builder template as defaultHi Melissa,
thanks for your reply.
Altering the theme files wouldn’t be a problem but I couldn’t find the right file. Any idea which one I have to change?Thanks in advance
ThomasForum: Themes and Templates
In reply to: [Make] Turn turn off builder template as defaultHello??? nothing???
Forum: Plugins
In reply to: [WP Job Manager] Permission problemHi Adam.
I didn’t install the plugin. I’m using to many already and trying to reduce them. I added the user manually to each blog – not a big deal as I have only 18.
Anyway, thanks for your advice.
ThomasForum: Plugins
In reply to: [WP Job Manager] Permission problemHi Mike,
thanks, but I try to have as few plugins as possible. I might give it a go if I can’t find another solution.Forum: Plugins
In reply to: [Broadcast] Permission problemHi Edward,
thanks for your quick reply. I solved the problem. Didn’t realise that I had to add this user to every sub-page manually… Silly me ??
Or is there an easier way of doing it?Thanks
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Icons?I integrated Font Awesome myself, following this guide. As kbam7 already said, it is pretty easy. Basically just adding link you add to your header php.
https://code.tutsplus.com/tutorials/using-font-awesome-in-your-wordpress-theme–cms-20594I used to use Easy Bootstrap Shortcodes but it has become extremely resource hungry and also didn’t work quite well on IE. That’s why I was looking for something similar. What’s missing in this Shortcodes Ultimate is the Dropdown Button… I guess you can’t have everything ??
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Icons?I thought the same. There are icons but only in combination with buttons or other shortcodes.
Is it possible to add an icon in front of normal text or numbers? For example a phone icon in front of the phone number?