Tomas Mackevicius
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tiny Framework] How to hide tags in front pageI assume you have to remove the widget that displays the tags. It’s hard to tell as your site doesn’t load at this moment.
Forum: Themes and Templates
In reply to: [Tiny Framework] Need help to get sub page/ child page to workHi,
unless you specify in WP settings that new pages should be automatically added to menu:
Auto add pages: Automatically add new top-level pages to this menu
For subpages you have to do this manually from the customizer or Admin/Appearance/Menus.
Forum: Themes and Templates
In reply to: [Tiny Framework] php7 and Tip84Thank you!
Will have to investigate this.
Forum: Themes and Templates
In reply to: [Tiny Framework] sharethis cookie?Are you using plugin ShareThis?
https://stackoverflow.com/questions/44314985/deleting-a-cookie-with-no-name
Forum: Themes and Templates
In reply to: [Tiny Framework] Width of search-form inputHi, if you would look at style.css and find:
.site-header .search-form [type="search"]:focus, .site-header .search-form [type="text"]:focus { background-color: #f5f5f5; border: 1px solid #bbb; box-shadow: none; cursor: text; outline: 0; width: 230px; width: 16.428571429rem; }You can change the width properties. At the top of style.css you will find how to calculate REM. Then you can paste this whole CSS code block into some kind custom CSS plugin, new WP version has it built in into customizer:
https://codex.ww.wp.xz.cn/CSS#Custom_CSS_in_WordPress
- This reply was modified 8 years, 4 months ago by Tomas Mackevicius.
Forum: Themes and Templates
In reply to: [Tiny Framework] Is Tiny Framework already Gutenberg ready?Hi,
at this point I didn’t do any special enhancements, although this theme is very similar to the standard WP themes, so I would not expect any big problems.
Because my free time is very limited I don;t want to engage in any specific modifications until Gutenberg is not released with WP. After the release I will take a look what can be done to make it compatible.
Thank you for considering TF!
Hi! Please open style.css of main theme or child theme in text editor and there you will find a convenient menu, there you will see: 5.0 – Navigation. Search inside the text for “5.0 – Navigation” and you will quickly get to it.
Otherwise you can directly inspect any element of the page:
http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Use-web-dev-tools
Forum: Themes and Templates
In reply to: [Tiny Framework] Front page image sizesActually, header image is optimized by WP automatically, depending on the viewport size. If you make page smaller and then reload your page with CTRL+F5 you can get similar HTML source, please note srcset:
<img src="http://mtomas.com/wp-content/uploads/2017/09/digital-dreams-1155914-e1506008775127-960x350.jpg" class="photo u-featured attachment-custom-header-image size-custom-header-image wp-post-image" alt="Code sharing" id="featured-image" itemprop="image" srcset="http://mtomas.com/wp-content/uploads/2017/09/digital-dreams-1155914-e1506008775127-960x350.jpg 960w, http://mtomas.com/wp-content/uploads/2017/09/digital-dreams-1155914-e1506008775127-300x110.jpg 300w, http://mtomas.com/wp-content/uploads/2017/09/digital-dreams-1155914-e1506008775127-768x280.jpg 768w, http://mtomas.com/wp-content/uploads/2017/09/digital-dreams-1155914-e1506008775127-620x226.jpg 620w" sizes="(max-width: 960px) 100vw, 960px" width="960" height="350">- This reply was modified 8 years, 7 months ago by Tomas Mackevicius.
Forum: Themes and Templates
In reply to: [Tiny Framework] Firefox scales everything down by 0.875Sorry for late reply, but everything looks good, header image is 960px.
Forum: Themes and Templates
In reply to: [Tiny Framework] Firefox scales everything down by 0.875I checked on my computer and FF showed normal 100% page. Try to clean internal cash with CTRL+F5.
Forum: Themes and Templates
In reply to: [Tiny Framework] Firefox scales everything down by 0.875It is possible that while on your site you accidentally did Ctrl+Mouse wheel or just CTRL +, and FF remembers that setting.
Try to reset it from View/Zoom or with CTRL + 0 and see if that corrects your viewport issue.
- This reply was modified 8 years, 8 months ago by Tomas Mackevicius.
Forum: Themes and Templates
In reply to: [Tiny Framework] target=blank – disable icon only onceYes, you have to include a special class name in the link:
Forum: Themes and Templates
In reply to: [Tiny Framework] mobile view menuYou have to use dev tools to find the CSS styles that affect that text:
http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Use-web-dev-tools
To disable search, same thing using dev tools find the element that holds the search (it’s
<li>) and use CSSdisplay: none;for it.Forum: Themes and Templates
In reply to: [Tiny Framework] Change Fonts (in Menu or Content)Well, of course, you just included the font, now you have to go to style.css and change Open Sans to Lora as main font.
Forum: Themes and Templates
In reply to: [Tiny Framework] Change Author PermalinkAnother related info:
WordPress’ handbook has a section on reporting security vulnerabilities that explains why disclosures of usernames or user IDs is not a security issue:
The WordPress project doesn’t consider usernames or user ids to be private or secure information. A username is part of your online identity. It is meant to identify, not verify, who you are saying you are. Verification is the job of the password.
Generally speaking, people do not consider usernames to be secret, often sharing them openly. Additionally, many major online establishments — such as Google and Facebook — have done away with usernames in favor of email addresses, which are shared around constantly and freely. WordPress has also moved this way, allowing users to log in with an email address or username since version 4.5.
WordPress Core Security Team Lead Aaron Campbell clarified this section of the handbook to confirm that the users endpoint is intended to be an open API endpoint that serves public data.
“It does in fact include usernames and user IDs (among other things) for users that have published posts in a post type that is set up to use the API, but all the data is considered public,” Campbell said.