UsusIpse
Forum Replies Created
-
I am also concerned. I would debate this theme locks developers into using the block system. Where there was a well defined template structure that had been refined for well over a decade, now there are only blocks.
Are you referring to being restricted to using the block editor as ‘full control’? This seems like WordPress for people that do not write markup. They use words like empower to describe it while I think hamstrung might be more apt. Many of us type much faster than anyone can click on that block editor.
How many stars does Gutenberg have again?OH you earned it.
I can fork the TOC widget I wrote if you like. I do not know how we can PM each other from here though.
Over a month later and not only was the original issue ignored but now WPUF just broke a client’s site. One of the versions after 2.8.1 makes a mistake in the database that breaks file uploads so that no images can be saved properly.
Considering this and the fact that Tariq was more concerned with reporting me to the Administrator for pointing out my perceived plagiarism than addressing my declaration has confirmed my suspicions.I can appreciate that Andrew. I had the same thought. I am not out to cause grief but rather provide quality control.
Every coder should learn to check an array before using it very early in their career. ‘First year mistake’ seems to fit the bill. I suppose the word decent might be a bit judgemental but I felt at liberty to add an opinion or two. It certainly is not the worst thing posted about this plugin on this forum. xD
What is frustrating here is that we are focusing on the Authors taking my criticism personally and their feelings and ignoring the fact that their plugin throws 5 errors on every page load.
I might be a bit hyperbolic by suggesting the rogue copy but that is my impression after reading the code and the unsubstantiated contribution claim to WooCommerce.
Since I did list the issue and it is very easy to fix the cause I will do you Andrew and WordPress in general the favor of updating my review if the Authors are able to sort these arrays properly within the month. Also I do not intend to entertain that further as you say. Everyone feels the same way about a company with a no refund policy.
I very clearly told you the issue in the first line of the review.
I do not work for you so you can forget me teaching you how to properly use an array. You should have learned that in your first year.
Also I am keen to see your WooCommerce contribution.
You should really provide a link for that.
Finally open source is often used by unscrupulous folks to copy and paste others work in order to sell a poorly coded ‘Pro’ module and gain clout. Remember that I never said you paid for reviews. You did.
I never said ‘you suck’ or anything personal and I clearly laid out what you need to get your plugin up to best practice standards. I know the truth hurts but if you can not take proper critique then you are in the wrong business.Forum: Themes and Templates
In reply to: [Twenty Fourteen] twentyfourteen_post_thumbnailTypically the featured image is thumbnail size. If you would like to keep the images you already have you can set the default thumbnail in your theme’s functions file. See the Codex on post_thumbnail.
Forum: Plugins
In reply to: [Theme My Login] From where are the Password fields pulled?This was a tricky bugger to track down. Naturally I find this after. =D
Will we have:
_e( 'Password', 'theme-my-login' );instead of
_e( 'Password');as of 6.4?
I have a decent set of modifications to 6.3.9 that provides for l10n if you want me to make a branch in your rep just send me a line.
Thanks again Jeff.
Forum: Plugins
In reply to: [Theme My Login] about Translation textdomainHey Simon
Check out this thread about TML l10n.
Forum: Plugins
In reply to: [Theme My Login] Theme My Login 6.3.4 translationHello Jeff and thanks for the plugin. =)
I am able to solve this issue by merging the current text domains by calling load_plugin_textdomain() from a template like so:
<?php load_plugin_textdomain('theme-my-login' , get_site_url() . 'wp/content/plugins/theme-my-login/languages/');?>I think if the text domain was hooked to plugins_loaded instead of init and updated to load_plugin_textdomain that might fix the loading function.
Forum: Reviews
In reply to: [Easing Slider] Easy EasingHey Matthew.
I will add a branch to your rep with my additions that add the post names to the buttons if you like. You can mail me credentials to my spam mail [email protected] but reply with the topic so I can find it please.
___Chris
Blast!
I just had the same issue. For me I was able to recreate by hitting the clear button on the user_role_editor interface.
I was able to fix by restoring a backup of the wp_options table only. A full backup was not required. I have never used user_role_editor before and it was installed by a previous developer. I plan to ween my client onto wp_members as you suggest. I have never had a conflict with wp_members that I remember.Your plugin rocks though! I certainly helped you to keep that 5 star rating you deserve.
Ich danke Ihnen sehr!
____ChrisForum: Fixing WordPress
In reply to: Send a PDF attachment generated by fpdf using wp_mailI have not tested this but at a glance.
You can add a name here:
$pdf->Output(“NAME HERE”, “S”);
Secondly I believe the attachment has to be an array:
$attachment = array(chunk_split(base64_encode($pdfdoc)));