bekar09
Forum Replies Created
-
Forum: Plugins
In reply to: [Mailpoet - Contact Form 7 Integration] Mailpoet Signup Tag does not showsubscribing. same problem here.
Forum: Plugins
In reply to: [Yoast SEO] Alexa Verification ID Rejected+1
Forum: Plugins
In reply to: [Insights from Google PageSpeed] Can't active this plugin!My pleasure Matt. Keep up the good job.
Forum: Plugins
In reply to: [Insights from Google PageSpeed] Can't active this plugin!Hi Matt,
Firstly thanks for this awesome plugin.
Well your plugin has indeed problems while activation. This is because of php short tags used in a couple of places. I would suggest it to replace “<?” with “<?php” for compatibility in various php environments.
or the other solution would be to enable php short tags
short_open_tag=On
in php.ini file and restart Apache.Hope that helps.
Thanks.
Forum: Plugins
In reply to: [WP-Markdown] [Plugin: WP-Markdown] Not Working With Jetpack CommentsSame issue here. @chrish did you find a fix for this?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Programmatically add new tableNevermind Tobias. I switched to Footable plugin. That suits my requirements better than yours. Keep up the good work. You’ve created an excellent plugin.
Forum: Plugins
In reply to: [Easy Table] Weird behaviourHi takien,
I changed the delimiter to plus(+) but that still breaks.
Any other thoughts?
Thanks.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Programmatically add new tableHi Tobias,
In that case, it will be almost a complete rework of what is already available in your plugin. Moreover the tables won’t be only added programmatically. Existing data will be added programmatically and new data will be loaded normally using the UI.
If you could kindly give a code snippet to add a new table with default table options, I can do the rest of adding rows. I’ve checked how table data is stored as post content. The only thing that bothers me is inserting the metadata “_tablepress_table_options” and “_tablepress_table_visibility”.
Even that can be done, but I always try to use native plugin functions because it will take care of inserting other required metadata.
Thanks,
Prasenjit.Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Programmatically add new tableHi Tobias,
Thanks for your response. Let me explain what I want exactly.
I want to have weekly box office stats e.g. https://www.imdb.com/chart/. Now each movie data is fetched programmatically. These movie data should be inserted into a tablepress table row. The resulting table will be inserted into a post as a shortcode and published.
Pseudo code:
function add_tablepress_table($data) { $table_name = 'week of 23 August 2013'; $table_desc = 'Box Office result for week of 23 August 2013'; $table_id = tablepress_insert_table($table_name, $table_desc, $default_table_options); foreach($data as $row) { $table_id->set_row($row['movie_rank'], $row['movie_name'], $row['weekend'], $row['gross']) } return $table_id; }
This $table_id will be used to insert into a post. Does that make sense?
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Customize search result outputI am still waiting for Dave’s answer @colibry.
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Customize search result outputHi Dave,
Can you give two example uses of the filters?
Also wanted to report that the search has become incredibly slow in this version.
Thanks.
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Customize search result outputHi Dave,
Thanks for your reply and flexibility to add these functionalities. I did not get a chance to test all of these. What I tested is the js/dwls-results.tpl and currently it breaks the View more results link. The html that is generated is below:
<a href="' + DavesWordPressLiveSearchConfig.blogURL + '/?s=' + resultsSearchTerm + '">View more results</a>
Also the code for View more Results is written inside the “_.each” (foreach) block.
<% if(searchResult.show_more !== undefined && searchResult.show_more && DavesWordPressLiveSearchConfig.showMoreResultsLink == "true") { %> <div class="clearfix search_footer"><a href="' + DavesWordPressLiveSearchConfig.blogURL + '/?s=' + resultsSearchTerm + '"><%= DavesWordPressLiveSearchConfig.viewMoreText %></a></div> <% } %>
This causes the link to be rendered along with each result. I am reporting these so that you can fix it before launch.
I will test the two filters and report back.
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Drafts appearing in live searchEven for me. I tried to follow this thread https://www.ads-software.com/support/topic/plugin-daves-wordpress-live-search-dropdown-shows-unpublished-drafts-gah?replies=6#post-1969527 and add
$query->set( 'post_status' , 'publish' );
after$query->set( 'posts_per_page', $maxResults );
around line# 215 but still did not work.I’m using Relevanssi, and am pretty sure that Relevanssi is not the culprit here.
Waiting for a fix…
Thanks.
Answering my own question: This can be achieved using Rewrite Endpoints
@wpyogi: The problem is not with the plugin. It is a generic question about displaying content under tabs. I know very well how to get custom field values with and without the plugin I. I mentioned the name of the plugin so that people know what exactly is my WP setup.