Tomas Mackevicius
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tiny Framework] Suspected critical vulnerabilityHi, I’m sorry to hear about the hacking issues. All my websites are running on Tiny Framework, but I didn’t have any big issues. Is it possible that it is related to a plugin that is running on the site?
The only issue I found was related to upgrade of PHP version on the server. Actually it might be a good idea to try to push that update. I see if I will have the time.
In terms of being abandoned. With a rapid development of WP5-6 I could not have time to make huge changes with every version. My hope must to wait until the dust will settle and then refresh the theme.
I also keep my eye on the https://www.classicpress.net project. They want to re-fork the project on the WP 6 base, so perhaps that will be a good opportunity for me to refresh the theme.
Forum: Themes and Templates
In reply to: [Tiny Framework] Sidebar on the static frontpageHi, if you want regular sidebar, once you select in the Admin/Settings/Reading the desired page as Homepage, just make it Default template, not Front page, and you will have default sidebar 😉
Hope that helps.
Forum: Themes and Templates
In reply to: [Tiny Framework] Compatability with WordPress 5.0.1Update: I already implemented Gutenberg/WP 5.x compatibility on the front end.
Now I just need to get those styles to the block editor itself and then will push update to the users.
Forum: Themes and Templates
In reply to: [Tiny Framework] Custom header on archive/category pagesHi, if I understand correctly,
you want only 1 same header image on all pages (including category pages)?
In this case, assuming you are using a child theme, you can replace main header image in: tiny-framework-child\images\headers\Tiny-Framework-header-01.jpg
And every page will display this image.
Or you want each page to have its own custom header (including category pages).
Forum: Themes and Templates
In reply to: [Tiny Framework] Compatability with WordPress 5.0.1Sure, I was waiting for the final Gutenberg version, so not to waste time, as it was changing so rapidly.
At this moment there is no baked-in compatibility, but as I understand Gutenberg will try to play nice with every theme, so you have to try.
Otherwise this month I will add basic compatibility and starting January I will see if I can port some interesting new things from 2019 and WP-Rig themes.
- This reply was modified 7 years, 5 months ago by Tomas Mackevicius.
Forum: Themes and Templates
In reply to: [Tiny Framework] Widget and Tiny frameworkYou would have to use CSS rules. Webmaster tools will let you to target element you want and then see its properties and adjust accordingly:
http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Use-web-dev-tools
Forum: Themes and Templates
In reply to: [Tiny Framework] Styling questions…Hi,
for font and color changes, please see:
http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Customize-color-scheme
Yes, you can remove link to TF, there is special code in functions.php that does that, you have to uncomment it:
http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#functions-php-settings
For other CSS related things, like gaps etc, please see:
http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Use-web-dev-tools
Forum: Themes and Templates
In reply to: [Tiny Framework] change of colorsPlease see:
.main-navigation li a { text-transform: uppercase;You can set value to: none;
Forum: Themes and Templates
In reply to: [Tiny Framework] Can I change Logo-Link ?Hi, the Logo link code is part of the standard WordPress function:
https://developer.ww.wp.xz.cn/reference/functions/the_custom_logo/
https://codex.ww.wp.xz.cn/Theme_Logo
For your task you would need custom function like here:
function imageAtts( string $html, int $blog_id ) : string { return sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>', \esc_url( home_url( '/' ) ), 'https://example.com/logo.jpg' ); } \add_filter( 'get_custom_logo', __NAMESPACE__ . '\getCustomLogo', 10, 2 );In this function you can try to replace
home_url( '/' )with your custom URL.Forum: Themes and Templates
In reply to: [Tiny Framework] Tiny Framework CSS ChangesHi,
1. not necessary, if it is not disabled specifically, you should be able to edit your files from the Admin: https://codex.ww.wp.xz.cn/Editing_Files
2. Overall the best option is to not edit original files, but to use a child theme:
http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Use-child-theme-or-notOr if you need to change only the CSS, you can use Appearance/Customize/Additional CSS to easily add your changes. On how to locate what CSS element to target, please refer to: http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Use-web-dev-tools
3. Use the dev tools: http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Use-web-dev-tools
and while in the targeting screen, point to that particular element and you will see what actual CSS rules are applied, so it will be easy to override them in Appearance/Customize/Additional CSS.You can also open style.css and search for multiple entries of: Tip88
One of them will be Tip88 – Customize color scheme: Styles for page titles for categories, tags, etc. Be aware, that the same element can be also defined in one or several Media queries, so search again for the same text to see if there are other instances of it.
4. If you want to change the appearance, steps are the same as for the 3.
Forum: Themes and Templates
In reply to: [Tiny Framework] Clickable HeaderHi! If you would upload a logo of the same size as header, then it would be linked, but if you want to link the featured image that appear above the article, then you have to copy header.php to your child theme and wrap this line in a link:
<a href="http://yoursiteaddress.com"><img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" /></a>- This reply was modified 8 years, 2 months ago by Tomas Mackevicius.
- This reply was modified 8 years, 2 months ago by Tomas Mackevicius.
Thank you!
Will take a look at this!
Forum: Themes and Templates
In reply to: [Tiny Framework] code error in footer.phpHi, you see, standard TF child theme doesn’t have footer.php file, so unless you would show me that file I cannot make a good guess.
Forum: Themes and Templates
In reply to: [Tiny Framework] How to use icons from font awesome?Hi! Your best bet is to check with WebDev tools to see where is the CSS conflict:
http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Use-web-dev-tools
You may need to use !important to enforce certain rules, like:
content: "\f14a"!important;But if they both appear that means most likely you did not target it the right way.
I cannot see the page now, so it is hard to tell.