Forum Replies Created

Viewing 15 replies - 1 through 15 (of 21 total)
  • Just for info. The problem turned out to be having unusual characters in the title of my “product”. So commas, asterixes, hyphens and anything apart from alphanumerical characters should not be used in the titles of images or videos.

    This was spotted by Thad Alexander the founder of Graphpaper Press.

    Hope this helps others.

    Thanks Cathy

    Thanks Emma.

    Thad. Currently on Sell Media v 2.06. Does this version override PayPal settings. Should the IPN settings be on or off?
    1. Receive IPN messages (Enabled)
    2. Do not receive IPN messages (Disabled)

    The IPN system is not working so download instructions are being sent without links and then the cart doesn’t clear. The payments page show a blank transaction of $0.

    Sean and patsky – did you come up with a solution to this problem? Even running the latest 2.06 of Sell Media is resulting in incomplete payment processes. Help appreciated.

    Hi. Did you sort this out? I am experiencing the same problem. The payment goes through and the emails are sent but with no download information.

    Thanks

    Did you find a solution to this as I have the same problem?

    Thanks

    Thread Starter pukkascott

    (@pukkascott)

    Many thanks, it works perfectly and as a bonus I didn’t destroy my site! Great solution.

    For the record my Child theme functions.php is now:

    <?php
    // Exit if accessed directly
    if ( !defined('ABSPATH')) exit;
    
    // BEGIN ENQUEUE PARENT ACTION
    
    if (!function_exists('chld_thm_cfg_parent_css')):
        function chld_thm_cfg_parent_css() {
            wp_enqueue_style('chld_thm_cfg_parent', get_template_directory_uri() . '/style.css');
        }
    endif;
    add_action('wp_enqueue_scripts', 'chld_thm_cfg_parent_css');
    
    // END ENQUEUE PARENT ACTION
    
    // Runs before the posts are fetched
    add_filter( 'pre_get_posts' , 'my_change_order' );
    // Function accepting current query
    function my_change_order( $query ) {
    	// Check if the query is for an archive
    	if($query->is_archive)
    		// Query was for archive, then set order
    		$query->set( 'order' , 'asc' );
    	// Return the query (else there's no more query, oops!)
    	return $query;
    }
    add_filter( 'the_content_more_link', 'modify_read_more_link' );
    function modify_read_more_link() {
    return '<a class="more-link" href="' . get_permalink() . '">MORE STORIES FROM THIS DAY... </a>';
    }
    ?>
    Thread Starter pukkascott

    (@pukkascott)

    Hi guys, thanks for the replies. I am a bit of a beginner with code but know my way around WordPress. I have a Highwind Child theme that has a functions.php which I used to get my posts to appear in ascending order. I have to admit that while doing that I mucked up my whole site so I am playing safe with this. Can you gently tell me where to place the suggested additional code within the existing code shown here:

    <?php
    // Exit if accessed directly
    if ( !defined('ABSPATH')) exit;
    
    // BEGIN ENQUEUE PARENT ACTION
    
    if (!function_exists('chld_thm_cfg_parent_css')):
        function chld_thm_cfg_parent_css() {
            wp_enqueue_style('chld_thm_cfg_parent', get_template_directory_uri() . '/style.css');
        }
    endif;
    add_action('wp_enqueue_scripts', 'chld_thm_cfg_parent_css');
    
    // END ENQUEUE PARENT ACTION
    
    // Runs before the posts are fetched
    add_filter( 'pre_get_posts' , 'my_change_order' );
    // Function accepting current query
    function my_change_order( $query ) {
    	// Check if the query is for an archive
    	if($query->is_archive)
    		// Query was for archive, then set order
    		$query->set( 'order' , 'asc' );
    	// Return the query (else there's no more query, oops!)
    	return $query;
    }
    ?>

    Many thanks

    Scott

    Thanks Rob. Will try it later.

    Red Bull day coming up?

    I will try some debugging when I have time. As you say there is probably another plug-in affecting this.

    For now I just delete all the tags created when I save the first draft and then save the draft again. Autotag then starts again and produces a complete set of keywords.

    I am seeing this in the Javascript console when I deselect the “Skipped Pre-Tagged Posts”

    Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help, check http://xhr.spec.whatwg.org/.
    VM362:63 GET http://nikkomsgchannel/e?001f0050005e005500430041006e005200510056005c005200…5d0050005e0049001f0051005d0047005d000b005f005f005d0059005e005f0050005b005e

    This is before I save. When I click save I get:

    Consider using ‘dppx’ units, as in CSS ‘dpi’ means dots-per-CSS-inch, not dots-per-physical-inch, so does not correspond to the actual ‘dpi’ of a screen. In media query expression: print, not all, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi).

    Does this point to anything? Definitely remains ticked after saving. If I refresh the page after saving the box remains unticked, but if I go to a post and then return it becomes unticked.

    Thanks for your help.

    Scott

    Thread Starter pukkascott

    (@pukkascott)

    Thanks Calvin, you were right. I had left space after the last ?> but removing this made no difference. So not quite the same as the user you referred me to.

    However it was the line space between the last } and ?> that caused the problem so removing this fixed the problem.

    For reference I am using the Highwind theme with a Highwind child theme just for functions.php and CSS.

    Thanks again for your help in finding a quick solution.

    Scott

    So for those who want to change the order of their blogs to ascending WITHIN A HIGHWIND CHILD THEME this is the working text:

    <?php
    // Exit if accessed directly
    if ( !defined('ABSPATH')) exit;
    
    // BEGIN ENQUEUE PARENT ACTION
    
    if (!function_exists('chld_thm_cfg_parent_css')):
        function chld_thm_cfg_parent_css() {
            wp_enqueue_style('chld_thm_cfg_parent', get_template_directory_uri() . '/style.css');
        }
    endif;
    add_action('wp_enqueue_scripts', 'chld_thm_cfg_parent_css');
    
    // END ENQUEUE PARENT ACTION
    
    // Runs before the posts are fetched
    add_filter( 'pre_get_posts' , 'my_change_order' );
    // Function accepting current query
    function my_change_order( $query ) {
    	// Check if the query is for an archive
    	if($query->is_archive)
    		// Query was for archive, then set order
    		$query->set( 'order' , 'asc' );
    	// Return the query (else there's no more query, oops!)
    	return $query;
    }
    ?>

    Hi Rob, firstly thanks for this plug-in. Don’t need the advanced features of the paid-for version but donated £5 for your efforts.

    just to let you know I have the same problem with v2.9.6.

    Deselect the Skipped Pre-Tagged Posts option, save the options, go to a post, update it, save draft, no new tags are generated, go back to the options and the option is ticked again.

    Working in Chrome on a PC using the Highwind Theme. I have tried deactivating and reactivating the plug-in but no change. Not sure how to check for JS errors.

    Scott

    Thread Starter pukkascott

    (@pukkascott)

    Hi Andrew, that shortcode was a recommendation I had seen to sort my posts into chronological order. I can’t seem to make it happen with CSS so I was looking at other solutions.

    Seems like the Highwind theme is stopping me. Provisional site is at http://www.absoluteonesies.com

Viewing 15 replies - 1 through 15 (of 21 total)