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

Buying the same membership again

$
0
0

Replies: 0

Hello!

Members get email notification about their membership expiring in 7 days, but they actually can renew this membership from their pages, because this option is disabled.
So they have to wait for membership actually expire and only then they can purchase it again.
This is very unfriendly behavior.
Any change to change it and allow player to purchase their membership as many times as they want?
Thank you!


Amazing support!!

$
0
0

Replies: 1

Big shout out to the team here for addressing my known issue and optimizing my server. Incredible support. Really fast help and knowledgeable people behind this plugin!

It Worked!

$
0
0

Replies: 0

Was scanning my website with an SEO tool and found that I had 109 images with no Alt Tag….Plugged this baby in, ignored all warnings to back-up my database-etc, and let it rip – SUCCESS! Added plugin to my favorites and to my toolkit for future websites. Thank you, thank you, thank you!!

Muito bom!

Invalid key type??

$
0
0

Replies: 0

I installed Recaptcha according to https://contactform7.com/recaptcha/

I am getting: ERROR for site owner: Invalid key type

I’ve copied and pasted the keys in at least 4 times because I can’t figure out how to put it in.

I also put the “snippet before the closing </head> tag on your HTML template:”

But I don’t know where to put “Paste this snippet in the JavaScript callback for an action on your website.” Is this part necessary as the original link at https://contactform7.com/recaptcha/ doesn’t say you have to do that?

Also how do you get rid of the “Privacy – Terms protected by reCAPTCHA” that comes on the right now when you load my website? That’s not something I actually want on my website.

Correct Responsive Mode settings

$
0
0

Replies: 0

Hi:
Thank you for this plugin!

In my theme the breakpoints for content-div media queries are 600px and then 800px, so small sizes are anything from 320px up to 599px, then I have some style-changes from 600 to 799px, and then the large size starts at 800px.

The container for the slideshow has a width of 95% with a max-width of 1200px and height at “auto” – I don’t want the slideshow to be any wider than 1200px, and at the largest it should be 1200px wide and 600px tall. As screen size narrows the slides should reduce proportionally down to about 320 x 160 on a smart-phone/portrait. So sizing should be based on the div width – not orientation, on the assumption the height will adjust proportionally.

So what should I choose/enter in the General Settings > Responsive Mode –
“maximum screen width” or “combined” ?

Then what should I enter into:
“maximum screen widths” for Desktop portrait
Tablet landscape
Tablet portrait
Mobile landscape
Mobile portrait
AND
Default width percentages for tablet and mobile?

Also, should I select “server-side mobile select”?

Then under the individual slideshow there’s “Size” settings – not sure how they relate to the general responsive settings.

I want to be able to change text content based on size – mobile will have a few words, tablet a bit more, desktop a long sentence. All will have a brief headline.

So do I want “auto” or “fullwidth”? And then it asks for more sizes…?

Sorry – I’ve read the docs and am confused. I know these things are complicated and that makes them hard to explain!

Thanks for your assistance!

Novas limitações

$
0
0

Replies: 0

Seria melhor tirar do diretório de plugins gratuito, já foi bom.

InstaMojo Charitable custom donation receipt page error

$
0
0

Replies: 0

I am getting the following in the error log
Platform – AWS Bitnami WordPress AMI
Wordpress Version – WordPress 4.9.8
Plugin – https://wordpress.org/plugins/integrate-charitable-instamojo/

Error Message
[Mon Oct 29 06:33:18.886752 2018] [proxy_fcgi:error] [pid 3780:tid 140553500862208] [client xx.xx.xx.xxx:53963] AH01071: Got error ‘PHP message: PHP Notice: Undefined variable: phone in /xx/xxx/xxxx/wordpress/htdocs/wp-content/plugins/integrate-charitable-instamojo/includes/gateway/class-charitable-gateway-instamojo.php on line 248\n’

If I change
1) The gateway to offline and donation receipt page to ” My custom page” then it works perfectly
2) The gateway to instamojo and donation receipt page to Automatic then it works perfectly
3) The error comes when selecting Instamojo as the payment gateway and donation receipt page to ” My custom page”


I made a custom endpoint. Getting page not found title but content is there.

$
0
0

Replies: 0

I have a class that registers a new endpoint, rewrites rules and then flushes it. It works perfectly except that it also gives a 404 error, making the page title “page not found” and adding some css which I dont want. I need to make it so that it actually knows my page exists. The added css and page title change are problems I need to resolve. This is the class I use, but it might not have anything to do with the problem:

<?php

    use Jigoshop\Helper\Render as RenderCore;
    use Jigoshop\Frontend\Page\PageInterface;
    use Jigoshop\Integration\Helper\Render;

    if ( ! defined( 'ABSPATH' ) ) {
        exit; // Exit if accessed directly.
    }

    class twizo_Jigoshop_TFASettings implements PageInterface
    {
        function __construct()
        {
            Render::addLocation('twizo-verification', __DIR__);
            add_action('init', function () {
            add_rewrite_endpoint("twizo-verification", EP_ROOT | EP_PAGES | 
    EP_PERMALINK);
            add_filter('generate_rewrite_rules', function ($rewrite) {
                $mySettings = [
                    '^account/twizo-verification/?$' => 'index.php? 
    pagename=twizo-verification'
                ];
                $rewrite->rules = $mySettings + $rewrite->rules;
                return $rewrite->rules;
            });
            flush_rewrite_rules();
        });
        add_filter('jigoshop.frontend.page_resolver.page', function ($args) {
            global $wp_query;
            if ($wp_query->query['pagename'] == 'twizo-verification') {
                return $this;
            }
            return $args;
        });
    }

    public function action()
    {
        $this->renderTFASettings();
    }

    public function render()
    {
    }

    public function renderTFASettings()
    {
        add_action('jigoshop\template\shop\content\before', function () {        
            echo '<h1>My account &raquo; 2FA Settings</h1>';
        });
        add_action('jigoshop\template\shop\content\after', function() {
            echo '<br><a href="./" class="btn btn-default">Go back to My 
    account</a>';
        });   
        
        switch(get_template()) {
            case "twentyfifteen":
                RenderCore::output('layout/twentyfifteen', [
                    'content' => Render::get('twizo-verification', 'tfa- 
       settings-body', array())
                ]);
            break;
            case "twentysixteen":
                RenderCore::output('layout/twentysixteen', [
                    'content' => Render::get('twizo-verification', 'tfa- 
       settings-body', array())
                ]);
            break;
            case "twentyseventeen":
                RenderCore::output('layout/twentyseventeen', [
                    'content' => Render::get('twizo-verification', 'tfa- 
       settings-body', array())
                ]);
            break;
            default: 
                RenderCore::output('layout/default', [
                    'content' => Render::get('twizo-verification', 'tfa- 
       settings-body', array())
                ]);
            break;
        }
        
        exit;
    }
    }
  • This topic was modified 12 minutes ago by nielss.

How to change the variable product image size on new Woocommerce 3.5.0?

$
0
0

Replies: 0

I already tried to change on Appearance > Customize > WooCommerce > Product Images: Main image width, Thumbnail width & Thumbnail cropping; but it only affected to main image only, without changing the variable product images.

Thank you.

Blog Page Issue

$
0
0

Replies: 0

Hi, I noticed the mdocs plugin is screwing up the layout on my blog page even with the document posts hidden. Is there any way for me to completely disable mdocs plugin on this page? Thanks!

Perfeito!

Persian/Farsi Translation

So slow, creates tremendous overhead on evey page load, unusable!

$
0
0

Replies: 0

I want to love this plugin, I do. However, after using both the free and the paid for version, and writing for help (to the same email address often shown in this plugins support forum and on their site). I’ve gone absolutely no where but slower and slower, to the point where my boss has ordered me to solve or remove.

In analysis, if all plugins are disabled, and a bone stock WP template used. Turning Shiftee on creates a 27 second page load. WOW! That’s horrible. 27 seconds just to see the home page!? Same test: All plugins on, modified custom theme, Shiftee OFF – 2 second page load. I wonder which plugin is the culprit here…? SHIFTEE!

We’ve run Shiftee for only a few months, but in that few months, we’ve witnessed Shiftee slow our site more and more. To a level that is incomprehensible. At this point, it is an unusable product. Paying for the pro version did nothing for us, other than NOT receive ANY support responses.

Looking into how this plugin is made – it’s just all wrong and amazing that WordPress would allow this in their systems. It attempts to load itself on every single page. It creates extraneous entries in our database and plugins like Sweep show 26,467 unused Terms which can not be swept. Fields like “Extra, Paid Time Off, Worked, Mileage, Receipt, Reimbursed” are repeated over and over thousands of times, despite being of no use to us.

And to think, all we wanted to use was just the ability to show a simple schedule to our employees. Nothing else! 1 Location. Only a handful of positions in a very small Mom & Pop business.

In short, do not waste your time on this plugin. It is not yet ready for use. It’s a ticking time bomb, which will end with your site loading so slow that your employee’s will hate you. More employees, more shifts, it will happen sooner. We got about 3 months, your mileage may vary.

To the plugin maker: We give you money, and you give us this!??? Please, re-evaluate and take pride in responding to your licensed support requests. We would have paid for a fix, but I guess your too busy scamming us all with this dreadful bit of code you have here. It needs serious work.

Unsubscribe, .com v .org, subscribers

$
0
0

Replies: 0

Our site was WP.com but is WP.org / Blue Host now. To fix our site I need to know how to add an unsubscribe button to posts & pages, know differences between .com & .org and how to limit subscribers.

Unsubscribe – Want to add an unsub to all posts and pages. We do not want to send stuff to people who no longer want it. Tried using Mail Chimp but couldn’t get it to work. MC help didn’t help.

.com v .org – Am told .com & .org are different organizations but need a .com account to run Jetpack on a .org site. Closed .com site because it came up when using Jetpack, and we lost Jetpack. Created new .com to use Jetpack and made sign in adminchapter to know when I was on the .com site (I am just admin on .org) and just found adminchapter is associated with our .org site.

Limit subscribers – We want to limit subscribers to those living in Maine. Our
registration form says registration is limited to Maine residents but non-residents keep signing up. Is there a way to automatically reject a registration if the State field does not say Maine? Also applicants are included in the users list before approved.

  • This topic was modified 39 minutes ago by Tom.

Working fine except field only saves last value on multiple product listing

$
0
0

Replies: 0

Hi,

I have a client using Tribe’s Events Ticket Plus with Woocommerce.

Your plugin has been the only one on the market where I can add fields on pages other than product pages. For that, I’m calling the function:

ppom_woocommerce_show_fields();

and it works great! This creates a new field as a product add-on for every ticket and displays against each product in the list.

The only issue I’m seeing, is that when I have multiple tickets per page, such as here:

https://imgur.com/sJxpdAF

…when I add these to cart, it only saves the last date that was set on the product list. This then seems it overwrite the previous dates entered, so it uses the same value form the last for all.

So in the basked and checkout, all products with fields have the last entered date set for all previous fields:

https://imgur.com/kmp1vWl

My guessing is the value of the field is the same for all fields, rather than them being unique and on save or add to cart, saves the last value or all.

Is there anyway I can add a unique value or ID to each field input / save process, so that they get saved with their unique data?

Thanks – great plugin otherwise!

PS – I also found that when I enabled the jQuery UI datepicker, it only displayed on the first field only.

  • This topic was modified 36 minutes ago by Phil.
  • This topic was modified 32 minutes ago by Phil.

PHP error in_array() expects parameter 2 to be array, null given

$
0
0

Replies: 0

Hi,
I have recently started getting this PHP error.

Warning: in_array() expects parameter 2 to be array, null given in /home/hanmermc/public_html/wp-content/plugins/all-in-one-seo-pack/aioseop_class.php on line 3868

My client indicates they have made no changes to the wordpress All in One SEO Pack or their theme/site.

It only appears to be happening on their home page.

I understand what the error means, just not sure what is actually causing it.

Any thoughts?
Thanks,
Paul.

Best Spa Center

$
0
0

Replies: 0

Seeking for affordable Dehradun Call Girls Rates ? contact on 08126574964 We provide cheap rate Hi-Fi profile Dehradun service Girls to suite your pocket.

Images not showing up front page but are in post

$
0
0

Replies: 0

Images I imported are in the posts but are not showing up as the featured images on the front page

I imported from blogger to wordpress install last night with the latest plugin version 1.3.1

like it!

Viewing all 512573 articles
Browse latest View live


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