Forum Replies Created

Viewing 15 Topics - 1 through 15 (of 22 total)
Author Posts
June 10, 2014 at 6:25 am in reply to: Redirect to Page Variables 21674
Jamie Jamie

Hi Mahi,

I’m not using dokan. I’m using product vendor from Matt Gates. I just need to know if WPUF provides the post id or the url of the newly created post to the page you redirect to?

Do you provide these variables?

thanks.

June 10, 2014 at 5:14 am in reply to: Redirect to Page Variables 21669
Jamie Jamie

Hello,

I want to be able to customise the promotion page for the sellers. There is already a social sharing plugin installed but this is not obvious and is for any one on the site to use. I would like to be able to customise the messages and have a custom promotion page. Having a dedicated page that highlights the promotion they can do is a common method for blogging/ecommerce.

I would like to have this as its own page instead of getting lost in the single post page social sharing.

thanks.

May 12, 2014 at 6:13 pm in reply to: Avatar Upload 20345
Jamie Jamie

I’ll work on tracking down which plugin might be conflicting, this site has quite a few running and quite a lot of custom javascript also.

March 11, 2014 at 4:18 am in reply to: Firefox undefined on registration page 16404
Jamie Jamie

What version of firefox are you using? I’ve tried this with the latest firefox on OS X and get the undefined error.

I’m happy to debug if I know what I can turn on to see whats failing and where?

March 8, 2014 at 11:29 am in reply to: Firefox undefined on registration page 16296
Jamie Jamie This reply has been marked as private.
March 8, 2014 at 11:24 am in reply to: Firefox undefined on registration page 16293
Jamie Jamie

I don’t have that option in my reply box.

Option not available

March 8, 2014 at 11:07 am in reply to: Firefox undefined on registration page 16290
Jamie Jamie

Can I message you the link privately?

January 26, 2014 at 11:52 am in reply to: Plugin slowing down server 14781
Jamie Jamie

Hello,

If every 12 hours my clients admin panel slows to 15 second load times they will not be happy. I understand that you server had an issue but what if this happens again or you have DNS issues again? Can we get an option to disable the automatic check?

Thanks.

January 22, 2014 at 4:06 pm in reply to: User Avatar Problem 14692
Jamie Jamie

Yes it is a wpuf form. Yes I read all the source code for the plugin in the relevant area and and this is why I’m puzzled.

If it happens again I’ll turn on debugging and hope I can catch the next one to see what is happening.

It happened on our staging server but I dismissed it. Now its happened on the live server I’m not so sure?

Thanks.

January 21, 2014 at 9:12 am in reply to: Style Recaptcha 14640
Jamie Jamie

I’ve attempted to put the following into the header.php but it’s not working.

<script type="text/javascript">
        var RecaptchaOptions = {
            theme : 'clean'
        };
</script>

But this didn’t work.

January 19, 2014 at 12:56 pm in reply to: Scripts Loading 14578
Jamie Jamie

Ok, well that’s the scripts that are loading everywhere. Why do they need to load on every page? Is it possible to disable these and only have them enabled on pages I want?

I guess I could wp_dequeue the scripts and do is_page(‘someformpage’) no?

January 19, 2014 at 12:50 pm in reply to: Scripts Loading 14575
Jamie Jamie

My server is currently being upgrade so I can’t link you to the site just yet. I will once its back online. I tested with my front page which doesn’t have any frontend-forms loaded and it is still loading all the js and css and I’m not using google maps stuff ANYWHERE and that is loading on every page also.

January 19, 2014 at 6:49 am in reply to: Scripts Loading 14573
Jamie Jamie

Hello,

I have disabled this setting and they are still loading on all pages.

Anything else I can look into ?

cheers,

January 17, 2014 at 8:34 am in reply to: Remove Status Column 14515
Jamie Jamie

Thanks Tareq

I don’t like to make modifications to plugins as it breaks upgrades. I have modified the plugin and added 2 filters instead. It would be great if you could include these so my code doesn’t break on the next update.

Here is the code:

Replace line 109

<th><?php _e( 'Status', 'wpuf' ); ?></th>

With

 <?php $head_col = '<th>'.__('Status', 'wpuf').'</th>'; ?>
  <?php $head_col = apply_filters('wpuf_dashboard_status_head_col', $head_col ); ?>
  <?php echo $head_col; ?>

Then replace line 154 – 156

<td>
  <?php wpuf_show_post_status( $post->post_status ) ?>
</td>

With

<?php 
// method echos need to store in variable 
ob_start(); 
wpuf_show_post_status( $post->post_status );
$status_data = ob_get_clean();  
                            
$col = '<td>'.$status_data.'</td>';
$col = apply_filters('wpuf_dashboard_status_col', $col );
echo $col; 
?>

Then I put this in my functions.php

function remove_status_head($html) { 
    $html = ''; 
    return $html; 
}
add_filter( 'wpuf_dashboard_status_head_col', 'remove_status_head');

function remove_status_col($html) { 
    $html = ''; 
    return $html; 
}
add_filter( 'wpuf_dashboard_status_col', 'remove_status_col');
January 16, 2014 at 8:07 am in reply to: Problem with forms 14475
Jamie Jamie

Arh! Thanks to that great video I am able to know where my code is buggy!

It’s PHP error with some custom date code I am saving!

Thank you so much, great support as always.

Viewing 15 Topics - 1 through 15 (of 22 total)