ratracegrad
Forum Replies Created
-
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Export ProblemsThen how do I export all the orders that have been placed when I was using ‘name’. If I change the name of the field then it will only show for new orders.
No it is showing at the top of the page and YES the page is EMPTY. There are no powerpress shortcodes on the page.
The problem is your add_filter( ‘the_content’, ‘powerpress_content’, POWERPRESS_CONTENT_ACTION_PRIORITY ); filter should really have an is_home() and is_front_page() check in there to prevent this.
I added the following to my functions.php file to overcome your problem with:
add_action( ‘genesis_before’, function() {
// Bail if not the home page.
if ( ! is_home() ) {
return;
}// Get the priority.
$priority = defined( ‘POWERPRESS_CONTENT_ACTION_PRIORITY’) ? POWERPRESS_CONTENT_ACTION_PRIORITY : 10;// Remove the content filter in Powerpress podcast plugin.
remove_filter( ‘the_content’, ‘powerpress_content’, $priority ) ;
});So to clarify for you, the podcast episode player is at top of the page which you could have easily seen by going to the URL that I linked to originally. The Page is completely empty and void of any text. There are no shortcodes for the player on the page at all.
I have given you the code to remove your player from the episodes page so you guys might want to look at changing your code so that it is not displayed on pages like it was for me.
@ shawnogordo The page is empty. There is no text on it whatsoever so the shortcode is not on the page.
At the bottom of the page, in the podcast episode section it is blank. There is no checkbox to edit so I cannot remove anything.
Any other suggestions on how to get it removed from this page?
Forum: Plugins
In reply to: [WP-Table Reloaded] Using shortcode from other plugin in tableTobias,
That worked like a champ! I made a donation on your website as a thanks for the assistance.
Jennifer
Forum: Plugins
In reply to: [WP-Table Reloaded] Using shortcode from other plugin in tableTobias,
Scratch above post. I have the code in the functions.php file. When I look at the table now I still see the [asa] shortcode text instead of the converted information.
Forum: Plugins
In reply to: [WP-Table Reloaded] Using shortcode from other plugin in tableTobias,
I added the above line and I get the following error code now:
Warning: Cannot modify header information – headers already sent by (output started at /home/jminge1/public_html/ellipticaltrainersguide.net/wp-content/themes/flexibility3/functions.php:15) in /home/jminge1/public_html/ellipticaltrainersguide.net/wp-includes/pluggable.php on line 897