Umar Draz
Forum Replies Created
-
Forum: Reviews
In reply to: [Wp Default Sender Email by IT Pixelz] Nice Plugin Created By Team IT Pixelz@itzem thanks for the compliment, your words really matter and are an encouragement to do more.
Thanks @mattyan0930 for the appreciation.
Forum: Reviews
In reply to: [Wp Default Sender Email by IT Pixelz] Couldn’t be any simpler!I am happy to know that you liked the user experience and it worked perfectly what exactly you were looking for.
Thank you @ragrant0 for admiring the efforts, your appreciation matters a lot to me.
Forum: Fixing WordPress
In reply to: Can I download installed plugin?Hi @mikehende,
Yes off-course you can download the plugin if you have access to your hosting control panel or FTP (File transfer protocol).
Just login to your FTP or Hosting Control Panel and go to file manager and point to following directory
wp-content/plugins/YOUR-PLUGIN
And download your plugins to your local computer.
Let me know if you have still questions, would like to help you more.
Forum: Fixing WordPress
In reply to: Notice: deprecated, but cannot find deprecated functionHello @lwitch,
Looks like you have recently upgraded your WooCommerce plugin but you have not updated your theme as your theme has WooCommerce template files hosted in it, under following path
/theme/woocommerce/
So what exactly you will have to do,
(IMPORTANT: Keep backup)
1. If you are using a pre-made theme and purchased it, get an upgrade of your theme from the provider.
2. If you have are developer, you need to download WooCommerce fresh plugin, and copy “template” directory’s content to your theme’s /theme/woocommerce/ directory and apply all your customisation again
3. Go to this directory, /theme/woocommerce/ and update the lines by searching those deprecated functions names by search via files from IDE (code editor) and replace by the suggested names as you mentioned in your thread.
Let me know if you are still questions, would love to help you more.
??
Forum: Developing with WordPress
In reply to: session_start failureHi @cbonwp, you can do your session as following way but keep in mind, if you would like to do anything within your theme pages, then do it in your header.php file before loading any output to the browser, so better if you do it before <html> tag in php so there will be no output before storing any session.
if(session_id() == '') session_start();
Forum: Developing with WordPress
In reply to: Pagination for custom pageHi @bluekid,
I am assuming that you need to have numeric pagination for your any custom query, if not please me know so I can help you in other way, here is sample code for you as below.
<?php $no = 20; $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; if ($paged == 1) { $offset = 0; } else { $offset = ($paged - 1) * $no; } // calculate total results $query_count = "SELECT * FROM Table WHERE status = '1' "; $wpdb->get_results($query_count); $total_results = $wpdb->num_rows; // run actual query for your data $query = "SELECT * FROM Table WHERE status = '1' ORDER BY updation_time DESC LIMIT $offset, $no "; $data = $wpdb->get_results($query); // display your query data in table etc if ($data) { foreach ($data as $p): // deal your query endforeach; } else { // deal with no data } ?> // here is code for pagination <?php if ($no > 0) { ?> <nav> <ul class="pagination"> <?php $total_pages = ceil($total_results / $no); $pagination = paginate_links(array( 'base' => get_pagenum_link(1) . '%_%', 'format' => '?paged=%#%', 'current' => $paged, 'total' => $total_pages, 'prev_next' => True, 'prev_text' => __('<span aria-hidden="true">«</span>'), 'next_text' => __('<span aria-hidden="true">»</span>'), 'type' => 'plan', 'add_args' => False, 'before_page_number' => '', 'after_page_number' => '' )); echo $pagination; ?> </ul> </nav> <?php } ?>
Forum: Reviews
In reply to: [Events Management by Dawsun] perfectThank you @gmocamilo for your feedback and appreciation.
Forum: Reviews
In reply to: [Wp Default Sender Email by IT Pixelz] Wp Default Sender Email@arrenato I am happy to know that its what you expected it to be.
Thank you for your feedback and appreciation
Forum: Reviews
In reply to: [WP Generator Remover by Dawsun] Works as advertisedI appreciate your feedback
Forum: Plugins
In reply to: [WP Generator Remover by Dawsun] how hide plugin generator tag?I am marking this as resolved as I addressed it in details, and your further feedback will be encouraged.
Forum: Plugins
In reply to: [WP Generator Remover by Dawsun] how hide plugin generator tag?Hi @step8601, thank you for your approaching, the plugin currently removes the WordPress default generator and version meta tag, specific plugin we have not yet added any feature, but we can put this into our consideration for our future release.
Would you like to indicate a plugin which is generating its meta so we can test on that plugin too.
Your feedback and point to a further improvement is hight appreciated ??
Forum: Reviews
In reply to: [WP Generator Remover by Dawsun] Perfectthank you for your feedback ??
Forum: Reviews
In reply to: [WP Bootstrap Carousel by IT Pixelz] Need some edition to titleHi Hypercube,
Thank you for your feedback and great suggestions, we are working on this and its new version is coming in next couple of days, and it will have definitely your desired feature.
Thanks