efoula
Forum Replies Created
-
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] Tracking is not working at allFor the English version of the website, please visit https://www.diqqa.com/en
Thanks.Forum: Plugins
In reply to: [qTranslate X] Line Break and List Style not workHello again,
I just fixed it, the problem was a js conflict.
Thank you and appreciated.Best,
EF.Forum: Plugins
In reply to: [qTranslate X] Line Break and List Style not workThis page is just an example, the problem that I am facing is in all the posts/pages’ editor.
Anyway, I will figure out the problem by myself, I will try to install a clean WP source files, don’t bother yourself anymore and thanks for your help.
Best,
EF.Forum: Plugins
In reply to: [qTranslate X] Line Break and List Style not workYes, when I deactivate qTranslate, the editor works great (with line breaks and list styles).
In the sample page I have linked above, I put around 4 line breaks with no hope to be exist after update the page.
Forum: Plugins
In reply to: [qTranslate X] Line Break and List Style not workI am using the qTransate X in many other websites, and everything is working great, I confirm this.
The problem is just on this website.
Forum: Plugins
In reply to: [qTranslate X] Line Break and List Style not workSorry for the confusing, I didn’t mean any interrupt…
Anyway, you can see the first content in this page which has an aligned-left image says, VDWS.
Forum: Plugins
In reply to: [qTranslate X] Line Break and List Style not workActually there is no any of the custom TinyMCE editors. I am just using the WP TinyMCE built-in editor.
!!!?
Hello again,
Angleo, open the plugin root (/templates/forms), you’ll find a file named as (event-editor.php), open this file and find this line of code
<input type="hidden" name="redirect_to" value="<?php echo esc_attr($_REQUEST['redirect_to']); ?>" />
, the value of the input is to redirect to the same page (edit page), this exactly what I want to change. The simple solution is to get the event (post) id of the current event that the user try to edit and when the user click the submit button, redirect him/her to the single event page by the id you have got (ex. post=274) or by getting the post slug throw it’s id (ex. events/example-event).
I know how to do this by editing the (event-editor.php) file, but I want to do this throw my (functions.php) file or even throw jQuery.
Thanks again.
Best,
EF.Hello Angelo,
Thanks for your reply. I will explain more, when a user use the edit form (front-end) to edit an event then submit (to update), it redirects the user to the same page of the edit form, but I want to redirect the user to the single page of the event (post) that he/she has edit.
I have found a php solution, but I should to edit in the plugin’s files, but I don’t want to do this because of it will be changed when I update the plugin later.
I checked out the link you have send above before, but this issue is a qTranslate redirecting troubleshoot, not the same of my problem.
Thank you, and I hope you got it.
Best,
EF.Forum: Fixing WordPress
In reply to: Event Start Date (Custom Metabox)Thank you for your reply.
I need WP searching for the custom meta box (start event date) instead of the post publish date.
Got it?Forum: Fixing WordPress
In reply to: Event Start Date (Custom Metabox)Here’s the question on WordPress Exchange … check the question link.
Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Translating custom taxonomy namesJust add this code in theme function.php file to to automatically detect all the taxonomies.
function qtranslate_edit_taxonomies(){ $args=array( 'public' => true , '_builtin' => false ); $output = 'object'; // or objects $operator = 'and'; // 'and' or 'or' $taxonomies = get_taxonomies($args,$output,$operator); if ($taxonomies) { foreach ($taxonomies as $taxonomy ) { add_action( $taxonomy->name.'_add_form', 'qtrans_modifyTermFormFor'); add_action( $taxonomy->name.'_edit_form', 'qtrans_modifyTermFormFor'); } } } add_action('admin_init', 'qtranslate_edit_taxonomies');
Forum: Plugins
In reply to: [Dynamic Product Gallery for WooCommerce] with RTL it is not workingHi Steve,
I’d like to work with you on this issue, am an Arabic web developer and I have already installed the WooCommerce plugin for one of my Arabic web projects and I had now the same troubleshoot with the RTL direction.
So, when you feel free contact me on [email protected]
Thanks.
Forum: Plugins
In reply to: [qTranslate] WP 3.4.2 broke qtranslate 2.5.31@pankaj Asopa
Yes you can writing the translation in any language manual, as you write in each language section the words you want like the screenshot in the link you posted above.
Also, qTranslator offers to you a translator helper that can helping you to translate any word from any language to other without using any outsources.That’s it ??
Forum: Plugins
In reply to: [qTranslate] WP 3.4.2 broke qtranslate 2.5.31Hey guys,
I just changed wp version in the line {define(‘QT_SUPPORTED_WP_VERSION’, ‘3.4.1’);} to {3.4.2} and it’s worked.But I have another problem now, that there is a conflict between qTranslate and Woocommerce plugin, I found that all of the admin panel’s pages, menus or orders are switched to the second lang as a default lang, and I checked for the default lang in the settings of the qTranslate plugin and reset it to the English lang as a default but still have the same problem.
Waiting your replies ??