netzgestaltung
Forum Replies Created
-
i installed 2.0.1 now (and also the smart grid) – now the “grid” button disappeared.
if i get it right – before there where two buttons “Grid” and “Text” while grid was grey and text was white – then i could not click on “Text” – maybe it was allready active?
i thought that the syntax highlighter was only in “Grid” modus so maybe i have messed up my feedback with to many different things.
i have to adment that i avoid clicking on things labeled with “Grid” to avoid unwanted content edits…
- This reply was modified 7 years ago by netzgestaltung.
hi,
i cant click on the “text” button in all of my previously created forms without the plugin – what should i do?
Forum: Reviews
In reply to: [Smart Grid-Layout Design for Contact Form 7] dependency for other plugin?well i dont know – from my feelings it only costed me time…. but i also understand your opinion… what should i do?
you get more stars for the good support!
- This reply was modified 7 years ago by netzgestaltung.
Forum: Reviews
In reply to: [Smart Grid-Layout Design for Contact Form 7] dependency for other plugin?is it possible to deactivate the loading of /wp-content/plugins/cf7-polylang/public/css/cf7-polylang-public.css?ver=2.0.0 in the frontend – which is empty btw? that only generates an extra http request…forget it, thats from the other plugin and not related here
and the answer is at themes functions.php
function yourTheme_enqueue_styles(){ wp_dequeue_style('cf7-polylang'); wp_deregister_style('cf7-polylang'); ... } add_action('wp_enqueue_scripts', 'yourTheme_enqueue_styles');
- This reply was modified 7 years ago by netzgestaltung.
- This reply was modified 7 years ago by netzgestaltung.
- This reply was modified 7 years ago by netzgestaltung.
Forum: Reviews
In reply to: [Smart Grid-Layout Design for Contact Form 7] dependency for other plugin?hi, i think we had a bad luck start and also we also have bad luck in fixing my issues ??
while having grid layouts at the frontend is good for the most people, i completly write frontends with my HTML/CSS only (with some JS Libs if necessary). The repaired page with the form: https://www.schlange-co.com/kompetenz/#custom_html-8
using a grid at the frontend would certainly break it or at least my css-layout would loose control over it or needs stronger selectors and a rewrite.
Forum: Reviews
In reply to: [Smart Grid-Layout Design for Contact Form 7] dependency for other plugin?in my honest opinion you should think about splitting your “Smart Grid-Layout Design for Contact Form 7” plugin as it does more then it says.
the goal to have a syntax editor and some editing interface tweaks i good (for those who need it), but the goal to provide a plattform to other plugins is something completely different.
so there are mixed abstracts here and that will lead you to more problems later then it fixes right now
Forum: Reviews
In reply to: [Smart Grid-Layout Design for Contact Form 7] dependency for other plugin?so you say its the mistake of CF7 itself which doesnt use the std WP-Interface (which is bad i agree).
OK
but is “another grid” really necessary?
And was it necessary to break updating other plugins?and what is this markup highlight? can i turn it off?
and the “text” button on top of the editor is not clickable.
- This reply was modified 7 years ago by netzgestaltung.
Forum: Reviews
In reply to: [Smart Grid-Layout Design for Contact Form 7] dependency for other plugin?hi –
i did not take the time to read the description, you are right.it was because i had to take the time to repair a page that has a updated deactivated plugin in the middle of the night.
i attribute to open source software on a regular basis, espacially on wordpress plugins, just take a look at my profile.
i only notice that the CF7 inteface changed without my willing and without my need and i have to to use something i never ordered.
Forum: Plugins
In reply to: [Delightful Downloads] Doesn’t work with 4.9.2?i installed it today on 4.9.2 and it worked – so maybe another plugin is interfering or there is another problem?
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] Change font in PDFthe same applies to DK PDF Generator in “dkpdfg-functions.php” on line 57 change:
if ( file_exists( ABSPATH . '/wp-content/plugins/dk-pdf/includes/mpdf60/mpdf.php' ) ) { include( ABSPATH . '/wp-content/plugins/dk-pdf/includes/mpdf60/mpdf.php' ); } else { require_once ABSPATH . '/wp-content/plugins/dk-pdf/vendor/autoload.php'; define( '_MPDF_TTFONTDATAPATH', sys_get_temp_dir() . "/" ); }
to
if ( is_dir(get_template_directory() . '/dkpdf') && is_dir(get_template_directory() . '/dkpdf/mpdf60') && file_exists(get_template_directory() . '/dkpdf/mpdf60/mpdf.php') ) { include(get_template_directory() . '/dkpdf/mpdf60/mpdf.php'); } else if ( file_exists( ABSPATH . '/wp-content/plugins/dk-pdf/includes/mpdf60/mpdf.php' ) ) { include( ABSPATH . '/wp-content/plugins/dk-pdf/includes/mpdf60/mpdf.php' ); } else { require_once ABSPATH . '/wp-content/plugins/dk-pdf/vendor/autoload.php'; define( '_MPDF_TTFONTDATAPATH', sys_get_temp_dir() . "/" ); }
- This reply was modified 7 years, 1 month ago by netzgestaltung.
- This reply was modified 7 years, 1 month ago by netzgestaltung.
- This reply was modified 7 years, 1 month ago by netzgestaltung.
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] Change font in PDFI edited the dkpdf-functions.php to this, i dont exactly know if thats an appropirate way:
if ( is_dir(get_template_directory() . '/dkpdf') && is_dir(get_template_directory() . '/dkpdf/mpdf60') && file_exists(get_template_directory() . '/dkpdf/mpdf60/mpdf.php') ) { include(get_template_directory() . '/dkpdf/mpdf60/mpdf.php'); } else { include('mpdf60/mpdf.php'); }
and copied the whole mpdf60 folder to <themename>/dkpdf/mpdf60
so now i only have to replace that code when an update arrives and the customized mpdf directory stays untouched.
- This reply was modified 7 years, 1 month ago by netzgestaltung.
- This reply was modified 7 years, 1 month ago by netzgestaltung.
- This reply was modified 7 years, 1 month ago by netzgestaltung.
- This reply was modified 7 years, 1 month ago by netzgestaltung.
- This reply was modified 7 years, 1 month ago by netzgestaltung.
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] Change font in PDFI fourth @blindmikey on this – a system like done for the template, loading a custom mPDF folder from the themes folder would be a great solution
in /wp-content/plugins/dk-pdf/includes/dkpdf-functions.php on line 114 replace:
include('mpdf60/mpdf.php');
with somtething similar to “dkpdf_get_mpdf()” and then have checks like in “DKPDF_Template_Loader”
- This reply was modified 7 years, 1 month ago by netzgestaltung.
Forum: Plugins
In reply to: [Crop-Thumbnails] Latest version crippled WPi now tested setup PHP to 7 and reinstalled the plugin on one site: worked.
good catch to update PHP versions ??
Forum: Plugins
In reply to: [Crop-Thumbnails] Latest version crippled WPreturn [];
couldt also be
return array();
?
Forum: Plugins
In reply to: [Crop-Thumbnails] Latest version crippled WPi do have an error when reactivating the plugin on one of the affected pages:
Das Plugin kann nicht aktiviert werden, da es einen fatalen Fehler erzeugt.
Parse error: syntax error, unexpected ‘[‘ in /wp-content/plugins/crop-thumbnails/functions/save.php on line 206PHP Versions running on sites that are affected on my side:
5.3.27
5.6.31
5.3.27all other installations (~20) do work – i assume they are on PHP 7 allready
- This reply was modified 7 years, 2 months ago by netzgestaltung.
- This reply was modified 7 years, 2 months ago by netzgestaltung.
- This reply was modified 7 years, 2 months ago by netzgestaltung.