deb
Forum Replies Created
-
Forum: Plugins
In reply to: [Eventbrite API] Events not loadingsame problem here, I have set everything correctly but the event is not loading. I am using localhost, does the site need to be live ?
Forum: Plugins
In reply to: [Invoices for WooCommerce] Logo not showing on invoiceI have uncommented line 344 and commented 346 but still logo not showing, i did this as well:$mpdf->showImageErrors = true;
$mpdf->debug = true;during checkout it shows unexpected error <
How shall I let it work.. ??
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 Plugin Conflicts// De-register jQuery from Contact Form 7
add_action( ‘wp_print_scripts’, ‘my_deregister_javascript’, 100 );
function my_deregister_javascript() {
wp_deregister_script( ‘contact-form-7’ );
}Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] " " and "-" broken after ACF 5.3.2+ 1
I create a welcome page like example.com/welcome.php for welcome message, and i want a {name} there .
<p>Your subscription has been confirmed! Thank you {name}!.</p>
I need it on my page or on editor. In page i tried:
<p>Your subscription has been confirmed! Thank you <?php echo $name; ?></p>
but it printed the page title. Any help ?yeah i need this too
Forum: Fixing WordPress
In reply to: Getting "Cheating Huh?" error since 3.4 upgradei gotta a solution:)
1. Login to your plesk/cpanel, whatever you use. Locate
wp-admin/media-upload.phpOpen the media-upload.php with the code editor scroll down to line #125 and change the code
if ( ! empty( $_REQUEST[‘post_id’] ) && ! current_user_can( ‘edit_post’ , $_REQUEST[‘post_id’] ) )
to
if ( ! empty( $_REQUEST[‘post_id’] ) && current_user_can( ‘edit_post’ , $_REQUEST[‘post_id’] ) )
Make sure you don’t touch line 126 with a code that looks like this wp_die( __( ‘Cheatin’ uh?’ ) );—– DON’T TOUCH THIS
Save and get back to your wordpress admin panel, make sure you have cleared your cache and this should do it.JUST CHANGE THIS TO LINE NUMBER 126 : do_action(“media_upload_$type”);
Forum: Fixing WordPress
In reply to: Getting "Cheating Huh?" error since 3.4 upgradewhere is this file “/themenname/epanel/js/custom_uploader.js” can you give me the detail url ?? i dont have epanel inside my theme..
its only in my localhost.. ??
i have tried too, but the slider doesn’t work for me too…
<div class=”slidingbanner”>
<?php if ( function_exists( ‘get_wp_parallax_content_slider’ ) ) { get_wp_parallax_content_slider(); } ?>
</div>
i have installed plugin, used category filter, create new category and tried to use it, but it shows only that yellow background and left/right arrow key, how can i solve, i have installed only wp-navi plugin, no other plugins were installed…i like this plugin, please help
glad that it helped you ??
<?php if(is_front_page()) {?>
your slider div here
<?php } ?>Forum: Themes and Templates
In reply to: Listing one category's posts as featured images?