Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all 512573 articles
Browse latest View live

[REQUEST] HTML Editor for Email Notifications

$
0
0

Replies: 0

Hi.
It is very disappointing not to be able to use HTML editor for creating email notifications. Tinymce is not enough if you want to have your notifications looking more than just a text message.
Hope you will take this point for future releases.
Thanks!


Data Problem

$
0
0

Replies: 0

The Data in the blocks are wrong for me, I have 9 Products in a category, blocks say zero. But then the products are shown in backend, but not in frontend. Tried also the attribute block, same problem, shows only in backend.

“GIVE PLUGIN”

$
0
0

Replies: 0

Can the GIVE PLUGIN transfer donations directly to my company’s bank account ?

brak ofert

$
0
0

Replies: 0

Mam taki problem
wersja darmowa wtyczki
aukcje zostały zaimportowane poprawnie

lecz po wpisaniu kodu z odpowiednim id
zawsze pokazuje komunikat
“Brak ofert”

niezależnie od wariacji

Czy aktualnie wtyczka używa REST API czy wycofywanej wersji WebAPI?
W opisie jest że może używać obu, w takim razie jak wybrać REST API?

Pozdrawiam
Kuba
P.S.
na stronie pokazowej także występuje brak ofert
https://test.grojanteam.pl/ogloszenia-audi-a4/

  • This topic was modified 1 hour, 37 minutes ago by jimmiq.

ATTACH STATIC PDF TO ORDER CONFIRMATION EMAIL

$
0
0

Replies: 0

Hi,

I’m currently trying to add an extra PDF-file to the order confirmation email. At the moment I already have plugin for pdf invoice attached to completed order email, but I need to add a static PDF-file (with terms and conditions according to law of my country).

I tried to look around for previous answers, but couldnt find anything besides really expensive plugins, is there any way to find a free plugin or use custom coding in functions php?

If somebody knows, could you kindly share the information?

Excellent plugin and legit developer

$
0
0

Replies: 0

Really well written and conceived plugin that tackles a complex issue. I’m not usually a “leaves reviews on wordpress.org” kind of guy, but the handful of negative reviews here are such a shame. I had no trouble setting this up and was especially grateful for the Nginx rewrite rules being included in the FAQ. Worked as expected and I was up and running in a few minutes. Anyone thinking this plugin should work in every possible scenario, without some basic knowledge about hosting environment and a skillset to make some minor adjustments, is being unrealistic and giving good developers like this reason not to share quality work. Don’t do that. This is the good stuff.

Good enough

Best ever

$
0
0

Replies: 0

I really like this “Mashshare Social Sharing Plugin” plugin.
This really helps my work on my blog Saluti al sole.
I recommend to other bloggers to use this one plugin.


pop up to viewer not registered yet

$
0
0

Replies: 0

Hi,

I set up a pop up for a signup form.

Is it possible to make it pop only for the ones not registered to my website?

Thanks

Card Number Field Characters Hidden

$
0
0

Replies: 0

On certain smaller screens like tablets and mostly phones the Card Number text input field only visibly shows up to 12-15 total numbers instead of the fully entered 16-digit card number. So it looks to users like they cannot type their ending card numbers. The remaining numbers are actually there but hidden behind the credit card logo image or within the textbox itself. I’ve tried to add CSS to my theme/site, but since this is directly adding in an iframe and coming from squareup.com code, I cannot overwrite this display. Please advise.

AUTO APPROVAL

$
0
0

Replies: 0

Hi Asgarso,

I just updated to V 1.15.1 and a lot of nice features btw.

I don’t see a setting that I can disable it? But is there’s a way I can have it automatic approval when their created NEW/REPLY?

Please help, thanks

Jquery Sortable lists using wordpress settings API

$
0
0

Replies: 0

im trying to create 2 lists that i can sort data between, and hopefully get 2 arrays of the data. So far i have the lists working, and i can save the order of the data but im having trouble saving the data between the lists. Please help. Unsure how much code to paste here so im just gonna put it all.
here is my php


<?php
/**
 * Plugin Name: Test Plugin
 * Version: 1.0
 */
class TestPlugin{
  
	private static $instance;

    
    static function GetInstance()
    {         
        if (!isset(self::$instance))
        {
            self::$instance = new self();
        }
        return self::$instance;
    }

    public function Initialize_Plugin()
    {  	
    	add_action('admin_enqueue_scripts',array($this, 'admin_scripts'));
    	add_action('admin_menu', array($this,'create_menu' ));
    }

	function admin_scripts() 
    {
    	if (is_admin()) {
			wp_register_script('admin-js', plugin_dir_url(__FILE__) . '/admin.js', array('jquery'), '', true);
			wp_enqueue_script('admin-js');
			wp_enqueue_script('jquery-ui-core');
			wp_enqueue_script( 'jquery-ui-sortable' );
    	}
	}

	function create_menu() 
    {

		//create new top-level menu
		add_menu_page(
        		'TEST Options',
                'TEST Options',
                'administrator',
                'test_options',
                array($this, 'plugin_options_page'),
                null,
        		99
        	);

		//call register settings function
		add_action( 'admin_init',array($this, 'plugin_options') );
	}

	function plugin_options()
    {
    	register_setting( 'settings-group', 'filter_fields_order' );
	}

	function plugin_options_page()
    {
    	?>

    	<div class="wrap">
        	<h2>Theme Options</h2>
        	<br/>

        	<?php settings_errors(); ?>

        	<form method="post" action="options.php" id="theme-options-form">
            	<?php settings_fields( 'settings-group' ); ?>
            	<?php do_settings_sections( 'settings-group' ); ?>

            	<?php
            	$fields_order_default = array(
               		0 => array(
                    	'id' => '0',
                    	'name' => 'List Item 1',
                    	'slug' => 'list_item_1'
                	),
                	1 => array(
                    	'id' => '1',
                    	'name' => 'List Item 2',
                    	'slug' => 'list_item_2'
                	),
                	2 => array(
                    	'id' => '2',
                    	'name' => 'List Item 3',
                    	'slug' => 'list_item_3'
                	),
                	3 => array(
                    	'id' => '3',
                    	'name' => 'List Item 4',
                    	'slug' => 'list_item_4'
                	),
                	4 => array(
                    	'id' => '4',
                    	'name' => 'List Item 5',
                    	'slug' => 'list_item_5'
                	),
            	);
            	?>

            	<div class="admin-module"> 
                	<label><b>Sortable List</b> <em>(Drag & drop to rearrange order)</em></label>
            	
					<ul style="display: flex;"> 
                		<ul style="display: block;">
                			<p>Group1</p>
                			<ul id="sortable1" class="filter-fields-list" >
                    			<?php 
                        			$filter_fields_order = get_option('filter_fields_order', $fields_order_default); 
                        			foreach($filter_fields_order as $value) { ?>

                            			<?php
                                			if(isset($value['id'])) { $id = $value['id']; }
                                			if(isset($value['name'])) { $name = $value['name']; }
                                			if(isset($value['slug'])) { $slug = $value['slug']; }
                           				?>

                            			<li class="sortable-item">
                                			<?php echo $name; ?>
                                			<input type="hidden" name="filter_fields_order[<?php echo $id; ?>][id]" value="<?php echo $id; ?>" />
                                			<input type="hidden" name="filter_fields_order[<?php echo $id; ?>][name]" value="<?php echo $name; ?>" />
                                			<input type="hidden" name="filter_fields_order[<?php echo $id; ?>][slug]" value="<?php echo $slug; ?>" />
                            			</li>
                    			<?php } ?>
                			</ul>
                    	</ul>
                		<ul style="display: block;">
                			<p>Group2</p>
                			<ul id="sortable2" class="filter-fields-list">
                    			<?php 
                        			$filter_fields_order2 = get_option('filter_fields_order2', $fields_order_default2); 
                        			foreach($filter_fields_order2 as $value) { ?>

                            			<?php
                                			if(isset($value['id'])) { $id = $value['id']; }
                                			if(isset($value['name'])) { $name = $value['name']; }
                                			if(isset($value['slug'])) { $slug = $value['slug']; }
                           				?>

                            			<li class="sortable-item">
                                			<?php echo $name; ?>
                                			<input type="hidden" name="filter_fields_order2[<?php echo $id; ?>][id]" value="<?php echo $id; ?>" />
                                			<input type="hidden" name="filter_fields_order2[<?php echo $id; ?>][name]" value="<?php echo $name; ?>" />
                                			<input type="hidden" name="filter_fields_order2[<?php echo $id; ?>][slug]" value="<?php echo $slug; ?>" />
                            			</li>
                    			<?php } ?>
                			</ul>
                    	</ul>
           			</ul>         
            	</div>

            	<?php submit_button(); ?>
        	</form>

    	</div>
    	<?php
	}
} 
$TestPlugin = TestPlugin::GetInstance();
$TestPlugin->Initialize_Plugin();

and i have admin.js


jQuery(document).ready(function($){

	$(document).ready(function() {
	   $('#theme-options-form').submit(function() { 
	      $(this).ajaxSubmit({
	      	 onLoading: $('.loader').show(),
	         success: function(){
	         	$('.loader').hide();
	            $('#save-result').fadeIn();
	            setTimeout(function() {
				    $('#save-result').fadeOut('fast');
				}, 2000);
	         }, 
	         timeout: 5000
	      }); 
	      return false; 
	   });
	});
	

	$("#sortable1, #sortable2").sortable({
    	connectWith: ".filter-fields-list",
	});
	
	$(document).ready(function () {
		$('#sortable1, #sortable2').sortable({
			curosr: 'move'
		});
	});

});

I feel like im close, but probably not. Thanks for your time.
I’m sorry about the incredibly poor format/syntax. It wasnt great at first but something happened when i pasted it in. It must be stabbing your eyes.

  • This topic was modified 1 hour, 22 minutes ago by sanguine1.
  • This topic was modified 1 hour, 20 minutes ago by sanguine1.

Conflict with Gallery Module

$
0
0

Replies: 0

Hi, I found a bug in this plugin. It has a conflict with the Divi Gallery module. If it’s active, the Gallery module appears to work fine. But if you open an image in a lightbox, it has no navigation left and right arrows and the keyboard doesn’t work either. You can’t navigate to the other images, without closing the lightbox and clicking another image.

Is there some way to just not have this load/work at all, on pages that are using the Divi Builder? It’s real use is on pages/posts not using Divi Builder.

Version 1.7.4 is working well

$
0
0

Replies: 0

Your plugin is working well. Ande I see that you are still supporting this, as you answered someones support question just a few weeks ago.

I am using your Version 1.7.4, with WordPress 5.2.3

But you might like to know that some users might be warned about it, like this:

Wordfence found the following new issues on “my website”
Alert generated at Saturday 5th of October 2019 at 07:54:45 PM
Medium Severity Problems:
* The Plugin “List Pages Shortcode” appears to be abandoned (updated 28 March 2017, tested to WP 4.4.19).

good plugin


Fantastic theme!

$
0
0

Replies: 0

I use it for every site I build. Highly recommended!

Gain & Lose Rank by Points Balance

$
0
0

Replies: 0

(How) Is it possible to configure ranks in a way like this?:

When a users points balance reaches 100 or more,
he gets rank “ABC”

But, if later points balance goes below 100,
he loses rank “ABC”

Means rank is granted/revoked multiple (infinite) times based on the required points balance of that rank.

Doesn’t work with Astra

$
0
0

Replies: 0

I thought this was a great plugin but it doesn’t work with the Astra theme

Border

$
0
0

Replies: 0

Hello,

I’ve stucked for more than 2 days looking for a way to solve to add border on published jobs but none of codes i searched worked neither Elementor, Can you help me with this issue?

https://prnt.sc/pff1rt

Error en procesar pago recurrentes

$
0
0

Replies: 1

Buenas Noches,

Les escribo para comentarles de que tengo un problema al momento de pagar cualquier pago recurrente en la plataforma que he creado de ecommerce, para los pagos recurrentes adquirí el plugin correspondientes, mediante el creo los planes los agrego a los productos pero cuando deseo realizar el pago ingresando los datos de mi tarjeta y hago click en pagar, me aparece el mensaje de error de culqui que no se pudo realizar el pago mencionado.

Agradeceré su apoyo para encontrar una solución a este problema.

Saludos

Viewing all 512573 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>