Kavouras
Forum Replies Created
-
Forum: Reviews
In reply to: [Republish Old Posts] Great, can it do pages too?People who have migrated from other CMS, often keep their old URL structure in posts and post new content in pages.
Forum: Themes and Templates
In reply to: [Matheson] Custom Header Image Not WorkingThis topic has been very helpful.
I was confused too about how the featured and header images work.
Thanks for your replies bavota.Forum: Plugins
In reply to: [Blogger Importer] All Images Not ImportingExactly the same issue here.
Forum: Plugins
In reply to: [Blogger Importer Extended] T, L and Msearch google for blogger fix.php
run this file after the migration and it will fix your slugs.Forum: Plugins
In reply to: [Blogger Importer] Missing custom fieldsThe idea was to use the stardard_seo_post_meta_description from blogger as excerpt in WP. This would be very useful and time-saving.
Thanks anyway for the plug-in and for taking the time to answer here (which is quite rare these days in WP support forums).
Forum: Plugins
In reply to: [GeoTargeting Lite - WordPress Geolocation] Disapearing admin barThanks
Forum: Plugins
In reply to: [Blogger Importer] Missing custom fieldsAlso it would be best to use the blogger_permalink field for the permalinks, in order to preserve the permalinks.
Forum: Plugins
In reply to: [Blogger Importer Extended] Images In PostsThanks for the update.
Forum: Themes and Templates
In reply to: Php vs HtmlThanks for your reply.
I would easily trade off translation-ability and changing the year once a year, for much cleaner, readable code, any day. Furthermore, aren’t all these php requests slowing down page loading?With all this brainstorming going on in the wp community, all the frameworks and builders and starter themes etc. I can’t believe I’m the only one who would like to see simpler code by substituting some superfluous php with html.
Just a further question to understand your example.
If you do:
<?php printf( ‘<span class=”modified”>%s</span>’, the_modified_date() ); ?>
the output will be
September 4, 2015<span class=”modified”></span>
Oops, probably not what you wanted.If you use this code, though:
<?php printf( ‘<span class=”modified”>%s</span>’, get_the_modified_date() ); ?>
the output will be
<span class=”modified>September 4, 2015</span>Couldn’t we achieve the
<span class=”modified>September 4, 2015</span>
with<span class="modified"> <?php printf( the_modified_date() ); ?></span>
?
If we can, this has also the added benefit of avoiding the %s stuff.Forum: Fixing WordPress
In reply to: Text MarginsIn line 1446, this code, interferes with https://lauriepantell.com/for-lawyers/ even on wide screen creates the problem:
body.template-front-page .site-content, body.single-attachment .site-content, body.full-width .site-content { width: 100%;
while the other page depends only on this code:
.site-content { float: left; width: 65.1042%;
Forum: Fixing WordPress
In reply to: Text WidgetEnhanced Text Widget
This is probably the solution.Forum: Fixing WordPress
In reply to: Text WidgetExcuse me, why would WP filter amazon code out?
Can’t we put whatever html we like in those txt/html widget areas?Forum: Fixing WordPress
In reply to: Is there another forum I can get support?Thanks for your reply.
I come from blogger, which I know inside out.
But I want the independence of a self hosted site, so I have started studying the WP system for a couple of months.MHO is that WP gets more complex every day. Compare the automatic themes 5 years ago and now.
The system has become too complicated, with too many files and simple changes/actions often require very complex code. (Take for example “translation-ready”, a feature that is of little interest to most of us, yet complicates the code a lot. And how about all those different pages that every theme comes with, search results, archive, tags, categories, blog, about, page, post and what not.. Hey! why burden me with all these php files, I don’t want every page to be different, consistency is a nice thing.)
WP is trying to make customization easier for the complete newbie with the customizer, but it makes things very complex for the guy who knows a bit of html and css and wants to really customize his site. PHP is not easy, the support is lacking, there are many different approaches to do the same things (all of them complicated) and it seems WP is forcing you to choose to either limit yourself to changing (the background) in Customizer or study php real hard and become a professional.
My point is:
The learning curve to WP for Html/Css guys like me is too steep.
Please hear me.Forum: Themes and Templates
In reply to: Boxed layout – yet adaptiveBy searching various sites and analyzing themes I found this code:
.site { max-width: 960px; margin: 0px auto; }
Is this the solution to boxed yer adaptive layout?
“Max-width” instead of “width”?