Prelevic Milos
Forum Replies Created
-
Forum: Reviews
In reply to: [Tickera - WordPress Event Ticketing] Great Plugin with awesome support!Hello Gabriel,
Thank you for a such sincere and amazing review. We always strive to make our customers satisfied and with this review, you made our holidays even better!
Thanks!Forum: Plugins
In reply to: [Tickera - WordPress Event Ticketing] Tickera rest APIHello,
In tickera/includes/addons/better-events/index.php on line 518 you will see this filter
tc_create_event_api_key_automatically.
I’m not exactly sure what your code looks like (if you save meta fields or not), but I believe this will help you.If you are not sure how to include it, please show us your code and we will see how to make it work.
Kind Regards,
MilosForum: Plugins
In reply to: [Tickera - WordPress Event Ticketing] Bug with CSV Export addonHello Scott,
Can you please check if you are using the latest CSV Export version (1.2.5.8). We removed live function some time ago.
Please let us know.Kind Regards,
MilosTickera but in this case, it’s Seating Chart add-on.
Is there any way to detect when your plugin is doing it?Forum: Plugins
In reply to: [Tickera - WordPress Event Ticketing] Change date and time formatHi there,
Tickera takes WordPress date and time settings.
You have date format and time format options in Settings > General. So, what you set there, that’s how Tickera will display the dates in the front end.Kind Regards,
MilosThanks for the nice words.
Unfortunately, there is no shortcode feature yet in the plugin.
Kind Regards,
MilosForum: Plugins
In reply to: [Tickera - WordPress Event Ticketing] Error in QR Code GenerationAs replied in the it might be due to a memory limit.
Please try boosting it to at least 512MB in wp-config.phpYou can also drop us a line on our Tickera website (contact page) so we can help you further.
Forum: Plugins
In reply to: [Aqua Page Builder] Plugin updates@anydog
I had some issues with saving modules when one (fullwidth) module contains 2 column modules and after that I add other column modules out of the fullwidth module. So, I have failed making fullwidth module and gave up on it ??I hope you make succeed with it ??
Forum: Plugins
In reply to: [Aqua Page Builder] Plugin updatesKolega,
I think I have managed to find a solution.
First of all you should add (edit) code from previous post to your aq_column_block.php, you will easily find it. I have just added ‘if($child[‘id_base’] !== ‘aq_column_block’){‘, it will stop infinite loop.Now open your ‘Row block’ and (if you copied everything from column) you should find similar code to mine and similar to column code.
It should look something like thisif($child['id_base'] == 'aq_column_block'){ if($parent == $col_order) { $block->form_callback($child); } }
This part of code will tell page builder that only $child[‘id_base’] with value aq_column_block will be foreached.
I think that should do the trick, if you have any problems let me know and if you run into any bugs please let me know so I can fix them on my plugin modification.
Ziveo ??
Forum: Plugins
In reply to: [Aqua Page Builder] Plugin updatesKolega (nisam ni primetio :)) ),
This is what I have done to stop the infinite loop
if($child['id_base'] !== 'aq_column_block'){ if($parent == $col_order) { $block->form_callback($child); } }
I have just placed if statement in aq_column_block.php and that is stopping it from infinite loop, but then I am having problem displaying modules inside the column, they display inside of it and create another one (same) outside of it. That is my next step for solving ??
Forum: Plugins
In reply to: [Aqua Page Builder] Plugin updatesIn the file aq-column-block.php there is this part of code
if($blocks) { foreach($blocks as $key => $child) { global $aq_registered_blocks; extract($child); //get the block object $block = $aq_registered_blocks[$id_base]; if($parent == $col_order) { $block->form_callback($child); } } }
I think that is causing the problem, it is used to show blocks inside of the column. I hope this is some pointer for you, if you solve this issue please share, I will do also ??
Forum: Plugins
In reply to: [Aqua Page Builder] Plugin updatesI’m sorry about that, I did not want to interrupt anyones thread, all I wanted is to confirm that I am having exact same issue and did not want to create duplicated topic.
Cheers
Forum: Plugins
In reply to: [Aqua Page Builder] Plugin updatesI have the same problem with infinite loop.
Forum: Plugins
In reply to: [WordPress Social Login] do_action('wordpress_social_login');Thanks for the reply.
I forgot to mention I did all of these things you stated and I am sorry for you had to write them all because I forgot to mention ??
The strangest thing is I tried it on twenty thirteen and it’s not working. And also strange thing is I am not getting any error ??
If someone has any other suggestions you are welcome ??
Forum: Themes and Templates
In reply to: Remove blog name from title on single postsChristopher,
Try this:
instead of
wp_title( '|', true, 'right' ); // Add the blog name. bloginfo( 'name' );
add this
if(!is_single()) { wp_title( '|', true, 'right' ); // Add the blog name. bloginfo( 'name' ); }
I have not tested it.