romedius33
Forum Replies Created
-
Thanks, that solved the problem!
Have a nice day or evening (depending from where you are)Thanks people,
It helped that the issue wasn’t yours.
I changed in css the width of the picker and changed the position from absolute to relative – now it works.
Have a good day (or night) depending from where you are,
KarlHi guys,
I’m afraid, this is still not fixed.
Do you have an idea when you will be able to do?Thanks
Forum: Plugins
In reply to: [Import Social Events] Import succeed but invisible in event managerOh, Just found it!
It’s “Event Manager Options”
scroll to the very end – there is a button “Reset Event Timezones”in section “Advanced Tools”Forum: Plugins
In reply to: [Import Social Events] Import succeed but invisible in event managerHey Jeroen,
Can you tell me how you made this set/reset of the local timezone in the event manager?I think I have the same problem.
Thanks and dankjewel,
KarlForum: Plugins
In reply to: [Contact Form 7] Contact Form Failed to send your messagesame here!
“Failed to send your message. Please try later or contact the administrator by another method.”I definitely not switching off all my plugins and changing to the default theme!
I am switching to another contact method!
Hi thanks for the nice plugin.
It worked fine – but I have the same problem with printing the invoice.If my customer receives an email and press on “Open print view in browser” this link shows up:
https://print-invoice/1990/?print-order-type=invoice&print-order-email=
that can’t be right?!?
thanks in advance
Forum: Plugins
In reply to: [WordPress Button Plugin MaxButtons] Buttons disapeared after updatedeactivating and reactivatind in not working!
Are you fixing it?Forum: Plugins
In reply to: [Visual Slide Box Builder] Up & Down text arrows not workingalso not working here.
having newest version!ok, I admit you tried everything to make it easy to understand. I still don’t get it, why it took me (and if you read in your forum I’m not the only one) a while to figure it out.
Make it more logical and don’t try to combine all possibilities.
I change my rating from 1 star to 5. Sorry for that.
have a nice day.thanks for your fast reply!
I don’t agree! Many users have problems with the documentation of your brandnew notification procedure.I would suggest to give somewhere on your documentation a simple example how to set it up.
90% of all users using your form as a simple registration form for clients.Name
Email
registration fields
commentThese informations have to be send to the administrator (Where to setup this/my email address?)
and optional an confirmation email to the client.Forum: Plugins
In reply to: [mb.YTPlayer for background videos] No autoplayI solved my problem also.
I just overwrote the “jquery.mb.YTPlayer.js” in mytheme/js map with the newest 1.9.2 version.
Thanks pupunzi for your help.Forum: Plugins
In reply to: [mb.YTPlayer for background videos] No autoplayHi pupunzi,
thanks for the quick response.
I tried it with your code. It works, just the autoplay is still not working.
Probably it’s interfering with my theme. I hope I will find how to get around. Then I will post it here.
Thanks for the nice plugin!
greetzForum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Change size of Logo on Printin the wcdn-template-functions.php (find it in the plugin map “includes”)
and change the
* Show logo html */ function wcdn_company_logo() { global $wcdn; $attachment_id = wcdn_get_company_logo_id(); $company = get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'custom_company_name' ); if( $attachment_id ) { $attachment_src = wp_get_attachment_image_src( $attachment_id, 'full', false ); // resize the image to a 1/2 of the original size // to have a printing point density of about 288ppi. ?> <img src="<?php echo $attachment_src[0]; ?>" width="<?php echo $attachment_src[1] / 2; ?>" height="<?php echo $attachment_src[2] / 2; ?>" alt="<?php echo esc_attr( $company ); ?>" /> <?php } }
Forum: Plugins
In reply to: [LeagueManager] extra column in matches tableHi Paulio51,
you’re great. Thanks for all.This is how I did it: (I added 3 columns “Referee”, “Matchtype” and “Man of the Match” – further I deleted the columns of “Halftime, Overtime and Penalty”
soccer.php
function displayMatchesHeader() { echo '<th>'.__( 'Referee', 'leaguemanager' ).'</th>'; echo '<th>'.__( 'Matchtype', 'leaguemanager' ).'</th>'; echo '<th>'.__( 'Man/match', 'leaguemanager' ).'</th>'; } /** * display Table columns for Match Administration * * @param object $match * @return void */ function displayMatchesColumns( $match ) { echo '<td><input class="points" type="text" size="6" id="ref'.$match->id.'" name="custom['.$match->id.'][ref]" value="'.$match->ref.'" /></td><td><input class="points" type="text" size="2" id="matchtype'.$match->id.'" name="custom['.$match->id.'][matchtype]" value="'.$match->matchtype.'" /></td><td><input class="points" type="text" size="6" id="man'.$match->id.'" name="custom['.$match->id.'][man]" value="'.$match->man.'" /></td>'; } </blockquote> I also want to export these values: <blockquote> function exportMatchesHeader( $content ) { $content .= "\t".__( 'Referee', 'leaguemanager' )."\t".__('matchtype', 'leaguemanager')."\t".__('Man/match', 'leaguemanager'); return $content; } /** * export matches data * * @param string $content * @param object $match * @return the content */ function exportMatchesData( $content, $match ) { if ( isset($match->man) ) $content .= "\t".sprintf($match->ref)."\t".sprintf($match->matchtype)."\t".sprintf($match->man); else $content .= "\t\t\t"; return $content; } </blockquote> And this is the rewritten table in matches.php: <blockquote> <table class='leaguemanager matchtable' summary='' title='<?php echo __( 'Match Plan', 'leaguemanager' )." ".$league->title ?>'> <tr> <th width=100px class='date1'><?php _e( 'Date', 'leaguemanager' ) ?></th> <th width=50px class='time'><?php _e( 'Time', 'leaguemanager' ) ?></th> <th width=100px class='location'><?php _e( 'Field', 'leaguemanager' ) ?></th> <th width=200px class='match'><?php _e( 'Match', 'leaguemanager' ) ?></th> <th width=30px class='score'><?php _e( 'Score', 'leaguemanager' ) ?></th> <th width=40px class='ref'><?php _e( 'Referee', 'leaguemanager' ) ?></th> <th width=40px class='man'><?php _e( 'Man/match', 'leaguemanager' ) ?></th> </tr> <?php foreach ( $matches AS $match ) : ?> <tr class='<?php echo $match->class ?>'> <td width=100px class='date1'><?php echo $match->date ?></td> <td width=50px class='time'><?php echo $match->start_time ?></td> <td width=100px class='location'><?php echo $match->location ?></td> <td width=200px class='match'><?php echo $match->title ?> <?php echo $match->report ?></td> <td width=30px class='score'><?php echo $match->score ?></td> <td width=40px class='ref'><?php echo $match->ref ?></td> <td width=40px class='man'><?php echo $match->man ?></td> </tr> <?php endforeach; ?> </table>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]