Forum Replies Created

Viewing 15 replies - 1 through 15 (of 21 total)
  • That’s what’s wrong with software development these days, and hardware for that matter, forced adoption and change, whether necessary or not. Too many solutions to problems that DON’T really exist. The state of the code aside, if it was left as a plug-in, at least for the next 18 months or so, while it matures and gets to work properly, there would be NO real problem! From a professional standpoint, it’s almost unbelievable that WordPress felt it’s fine to force this on users, breaking so many templates and developed workflows. We already have page/visual builders, like Elementor, that are a hundred times better than Gutenberg, so quite off target I would say as an attempt to modernise and I’m sure there are other areas that should have had more priority – but everyone seems intent on dumbing down their products these days. Once you’ve experienced enough ‘change’ in a career, you soon recognise how much was ill-thought through and has wasted so much of your own time!

    Well, WordPress have pressed the self-destruct by forcing this ill-conceived and under-developed approach on users, busting many sites! Continued testing has demonstrated to me what an awful implementation this is. Products like Elementor already cover this more ‘visual’ approach a hundred times better. Had you the deference (lack of arrogance) to just leave this as a plug-in for a year or more, while it matured and could be tested properly, you would be in a much better place… you’ve just shot yourself in the foot… BIG TIME! I have locked down all sites I manage so they will never upgrade to 5 and looking to migrate to alternative platforms now. Such a shame!!! And something I’m hearing a lot all over the web. There seems to be a swell building up against the constant forcing of upgrades, hardware and software, and the simultaneous dumbing down of technology that is going to create a tsunami of rebellion in the next 12–18 months… I hope! Please, it’s a simple fix… leave Gutenberg as a plug-in.

    Continued attempts to use this has demonstrated to me beyond doubt what a terrible implementation this is. It’s neither a proper page builder or visual editor. No idea what it is, really. I cannot believe how far off target this is. Can’t see the wood for the trees I guess. I will not be updating any WordPress site to 5.0 if we cannot retain the existing approach. Even clients that maintain their own sites have found this to be awful and don’t want it. Might be time to ditch WordPress.

    As a follow-up, and another go with Gutenberg, it is still not something I would use as it isn’t very compatible with some of the themes I use, some of which are not current. I’m not prepared to go through the agro to make them work, so will not upgrade to the next major release of WordPress unless the current editing approach is also maintained. I still see little advantage or real step forward with this.

    My experience is limited with page builders, but Elementor feels the best to use, mostly due to the live preview. I’m also going to look at Semplice. For myself, without seeing what you are going to get, dragging blocks around is not really much of a step forward. The current implementation also appears a little flaky when using Safari, so much so, the previous visual and text editors are better. Gutenberg relates to print, which is very fixed in it’s layout… WYSIWYG, yet here it’s being applied as a concept to something that is not. A personal opinion, I know, but it looked so full of promise. May be one day.

    richbate,

    Thanks for the feedback. Sorry, slow reply but never received notification of your question, and I haven’t been back here for a while.

    In my site, sidebar sits at the top and sidebar2 sits at the bottom. The top one is designed for text (links), and the one at the bottom holds the other text links to pages and categories.

    I’m not sure you can fix the the grid within a frame, as it has to flex for the content. Not quite sure what you are trying to achieve, but I suspect you will need to customise the index file and the sidebar files to accommodate the content you want to include.

    Forum: Plugins
    In reply to: What is this plugin?

    This is not part of the theme, or at least the one you can download. Clearly, as the designers, they have customised their own version. I think there are lots of jQuery and other solutions to this that you could implement, but you will need to search around. I’m not aware of a specific WordPress plug-in.

    One other thing. You cannot crop thumbnails that are smaller than the thumbnail setting in in the Media preferences. Change this, and cropping is suddenly allowed. Simples! The drop down help with the tool explains this.

    I’m still having an issue with this. I have spent ages comparing code with my (hacked) version and the original theme code and cannot find a problem. I do not have any custom settings with my hosting for error pages. If anyone can help, please let me know. Thanks!

    Sorry, haven’t been back here for a while. I simply ensure that the (a) image goes first in the post. I tend to compile and edit my posts in the HTML mode.

    Finally made this work, so thought you might be interested in how.

    Find the following code in index.php, then change the ‘query_posts’ to as shown below. This will remove the duplicate entry in the grid view. This will not work for ‘sticky’ posts.

    <?php /* make a new query for grid items (in single page) */
    	$new_query_arg = 'paged='.$paged;
    
    	// use this code if you want filter items by category.
    	/* $arr_catID = array();
    	foreach( get_the_category() as $cat) $arr_catID[] = $cat->cat_ID;
    	if ( count($arr_catID) ) $new_query_arg .= '&cat=' . join(',', $arr_catID);
    	*/
    
    	query_posts('offset=1',$new_query_arg);
    ?>

    The penny finally dropped!!!

    Forum: Themes and Templates
    In reply to: Tanzaku query

    Hi janki_dee,

    When you are editing posts in WordPress there is an icon on the bar above that looks like two pages split in two by a dotted line (Visual view). That is the ‘more’ code. Insert your cursor at the point in the text that you want to your ‘excerpt’ to stop. This can be anywhere (after a few words, sentence or paragraph). The theme will just include the text up to this point in the grid view, and add the ‘Details »’ or similar at the end. You can also customise what that is within index.php. You can also use the custom excerpt section if you want hand-crafted text instead. I hope that is a bit clearer.

    I have done this by hacking the CSS. My site is restricted to three columns. I set a max-width on the ‘#container’ and ‘#footer’. I also put a max-width on the ‘div.post-body’ style to stop single post text spreading across all columns; all my images just float to the right of the text. You may need to experiment with the CSS a little as I have customised the theme quite a bit now.

    Thanks, loligopress. I had come across that, but cannot see how to implement it in this theme. I think the bit of code below is where it should go… somehow. Any suggestions? My site. Thanks.

    <?php /* make a new query for grid items (in single page) */
    	$new_query_arg = 'paged='.$paged;
    
    	// use this code if you want filter items by category.
    	$arr_catID = array();
    	foreach( get_the_category() as $cat) $arr_catID[] = $cat->cat_ID;
    	if ( count($arr_catID) ) $new_query_arg .= '&cat=' . join(',', $arr_catID);
    
    	query_posts($new_query_arg);
    ?>
    Forum: Themes and Templates
    In reply to: Tanzaku query

    Mathew,

    I can see from your website you haven’t solved this yet.

    Fortunately, the answer is simple. Just insert the ‘more’ code that WordPress uses to create an extract after the first sentence or paragraph as you wish. You can also insert a custom insert within the edit page of the posts. You may need to scroll down a ways to see it. The tanzaku theme will use the custom excerpt first, then that within the body of the post if a custom excerpt doesn’t exist.

    I hope that explains it.

Viewing 15 replies - 1 through 15 (of 21 total)