drago239
Forum Replies Created
-
Hi @mrdaro,
Thanks for your reply and video. As far as I can see in the video, I did this what you showed in the video. I tried it with WPML and Loco Translate.
I’m going to look into it further more, maybe I missed something. I’m going to test this also on fresh install.
Thank you for your effort.
Hi @mrdaro,
Thanks for your reply.
Yes, forms are by each language, and this is ok, also donations can be translated and when it’s translated, problem is still here, but with this is problem that it’s a string in placeholder {receipt_link} and it can’t be modified/translated in donation email receipts per form. In form is just {receipt_link} which is replaced by plugin with string View the receipt in your browser » wrapped by url. So you can’t change it in email messages.
As I said before, when I preview email in browser on form, text is following language, so I suppose and I see, function that has this {receipt_link} placeholder doesn’t follow form language. This function is give_get_view_receipt_link in misc-functions file.
Hi again,
I tried this on fresh wordpress installation with only nextgen and ithemes plugins installed and with latest versions of everything, wordpress and plugins. And it’s the same thing. I tried this on vagrant vvv on windows.
If you want I can put somewhere or send you chrome console log, there’s a lots of javascript errors.
Hi,
thanks for your quick response. Yes, I’m using latest versions of both and latest version of wordpress. This happened after update, before was ok. I also tried with all plugins deactivated (except those two, of course) and twentynineteen theme. I also tried this on wampserver and on vagrant vvv.
I’m a little short on time right now, but what I can think of next is to try to remove completely all plugins and themes that are not necessary. And to try this on fresh installation. But as you say that you can’t replicate, I suppose that things would work with fresh installation.
Hi,
regarding this notice: Trying to get property of non-object in plugins/nextgen-gallery/products/photocrati_nextgen/modules/ngglegacy/admin/manage-galleries.php on line 297 I also have this problem and upon investigating what is causing this issue I found out that NextGen Gallery has table in database called someprefix_ngg_gallery and column Author with id of the user and when you delete user galleries which has his id will display this error.
If I change Author id in that table through phpmyadmin and set id of existing user there is no notice.
Maybe author of this plugin should check on user deletion to set new author like how it’s done with posts and pages, it would be great.
Thanks.
Forum: Plugins
In reply to: [WP Editor] Insert Links & Changing Between Visual & Text Editor ProblemsActually this has nothing to do with your plugin, wp editor wipe out links without text, with icons and so.
Forum: Plugins
In reply to: [WP Editor] Insert Links & Changing Between Visual & Text Editor ProblemsChanging from text to visual console says “Deprecated TinyMCE API call: <target>.onNodeChange.add(..)” and changing back to text links are gone, actually replaced with  . I also tried HTML Editor Syntax Highlighter plugin and problem remain.
Sorry, I forgot to mention plugin version. Thanks.
Forum: Plugins
In reply to: [Polylang] Polylang deleted pages on deactivationHere i am again and it happened again. Actually what happened this time is that one page, only one page is not deleted but some parameters are changed in database. Change is post_content, post_title and post_type. In post_content is serialized string which is showing in Settings – Languages on String Translation tab. post_title is polylang_mo_49, post_type is polylang_mo. post_name is ok and guid is ok.
What I recently did was that I deleted some widgets and deleted some string translations on String translations tab. I’m still looking exact event that caused this issue because I’m not exactly sure when did this happened.
For now I don’t have a clue what event changed this post.
Forum: Plugins
In reply to: [Polylang] Polylang deleted pages on deactivationThanks for your help, but this must be Options Framework issue since this is working only if Options Framework plugin is deactivated. I tried it on fresh WordPress install and it works the same. I will ask Options Framework developer for this.
Thanks again.
Forum: Plugins
In reply to: [Polylang] Polylang deleted pages on deactivationUnfortunately not. Tried that and it does filter out categories by ‘hide_empty’ but not by ‘lang’. I suppose this has to do with Options Framework plugin.
Thanks for your quick reply. I’m still working on this problem, and, honestly, for now I really don’t know what caused deleting pages, but it happened when I deactivated Polylang.
Forum: Plugins
In reply to: [Polylang] Polylang deleted pages on deactivationWell, this happened on my local dev server, I’m developing theme from Underscore and using Options Framework plugin and few others. Pages are not in database, I deactivated all plugins, changed themes and still the same. Since this is in development, I re-installed WordPress and tried different combinations (deactivating plugins, change themes…) and for now is ok. What I asked earlier I want to display pages in default language in drop-down of options framework, also for categories, and I’m using two wpdb selects. I suppose with select queries it’s not possible to delete pages?! Or is it?
Here is a query for categories:
$options_categories = array(); $pll_hr = 'pll_hr'; $pll_hr_id = $wpdb->get_var($wpdb->prepare("SELECT t.term_id FROM $wpdb->terms AS t" . " WHERE t.slug = %s", $pll_hr)); $mycats = $wpdb->get_results($wpdb->prepare("SELECT t.*, tt.* FROM $wpdb->terms AS t" . " INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id" . " INNER JOIN $wpdb->term_relationships AS tr ON tr.object_id = t.term_id" . " WHERE tt.taxonomy IN ('category')" . " AND tr.term_taxonomy_id = $pll_hr_id" . " AND tt.count > 0" . "", $pll_hr_id)); foreach ($mycats as $cat) { $options_categories[$cat->term_id] = $cat->name; }Here is a query for pages:
$options_pages = array(); //$options_pages_obj = get_pages('sort_column=post_parent,menu_order'); $options_pages[''] = 'Odaberite stranicu:'; $args = array( 'post_type' => 'page', 'orderby' => 'title', 'order' => 'ASC', 'lang' => 'hr' ); $pages_query = new WP_Query($args); while ($pages_query->have_posts()) : $pages_query->the_post(); $options_pages[$post->ID] = $post->post_title; endwhile; wp_reset_postdata();Forum: Plugins
In reply to: [Stealth Login Page] Wrong option name in uninstallYou’re welcome.
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] "Infinity" background after publishing mapOn my page I have div with class of fluid-width-video-wrapper, after I put this in overflow: hidden or display: none, page is displayed ok. So try with that.