Forum Replies Created

Viewing 15 replies - 31 through 45 (of 58 total)
  • Thread Starter nathanwright

    (@nathanwright)

    Hi Wojtek

    Thats fixed the issues with it conflicting with themes that were using the same css class names but I notice that you have not added any additional class or id to things like H3 etc as you can see from the HTML your plugin produces. It would also be useful if your plugin added an id to the wrapping DIV so that things can be tweaked with CSS as at the moment this is not possible (not easily anyway).

    Cheers

    Nathan

    <div><div><h3 class="">GDPR Request</h3></div>
    			<div class="gdprpdr_entry-content"><p class="">To request a GDPR report please submit your email address below. We will email you a confirmation link to verify
    			you are the owner of the account.</p>
    			<form action="https://www.gdprhelp.je/gdpr-personal-data-report-request/?new_gdpr_request=1" method="post">
    				<input type="email" name="email" placehoder="E-mail Address" required=""><br>
    
    				<input type="checkbox" name="gdpr_request_form_checkbox" required="">
    				<label for="gdpr_request_form_checkbox">I consent to having Jaz'ing Up GDPR! collect my email, IP address and browser request details for the purpose of generating the personal data report (to learn more about our privacy policy please visit our privacy policy statement).</label>
    
    				<input type="submit" class="button submit gdprpdr_submit-button" value="Submit">
    			</form></div></div>
    Thread Starter nathanwright

    (@nathanwright)

    Sorry, you were correct my PHP version had changed to an old version. Not sure why that happened. Plugin working now, will be signing up for the pro service soon. Thanks

    Thread Starter nathanwright

    (@nathanwright)

    It is a fresh wp install running wp 4.9.1 and no other plugins and default theme

    Thread Starter nathanwright

    (@nathanwright)

    No I am using 7.0.26

    Thread Starter nathanwright

    (@nathanwright)

    Hi, I contacted Yith and they have said that the version of Select2 that they use in their plugins is the one that is supplied with WooCommerce. Is your plugin compatible with the version that is supplied with WooCommerce 3.x?

    Thread Starter nathanwright

    (@nathanwright)

    Thanks for coming back to me so quickly.

    I really want to use your plugin bundle on a new site I am working on for a client but we are using Avada theme and a large number of Yith plugins and I have just read that their is some known issues when using these two plugins with your product (I understand it is not your plugin at fault).

    Do you know if you / they are planning any fix or workaround any time soon as this is a total showstopper for me.

    Thanks

    Thread Starter nathanwright

    (@nathanwright)

    Hi Matthew

    Thanks for the reply, I have actually had a plugin custom written to do what I need and have to say (for anyone else interested) it makes a massive difference in performance when you are loading plugins etc and should be in the WP core as an option.

    Cheers

    Nathan

    Thread Starter nathanwright

    (@nathanwright)

    Hi Marko

    I have just created a hack which achieves what I need so I thought I would share it with everyone.

    Using User Role Editor I created a new role called “hidden-metaboxes” and gave it no rights and no users belonging to the role. Then in Tabify I have created a tab called “Hidden” then select the new role I have created and to restrict the tab to the role that doesn’t have any members. Then by magic it gets removed by Tabify’s normal process and the tab is hidden from view and the metaboxes that are in the tab are not loaded and this helps speed up page load and use massively.

    Would be nice if Tabify could do this without having to use User Role Editor which you could do be creating a new role when the plugin is activated called say “tabify-hidden-metaboxes” with name of “Hidden Metaboxes” then people can do what I have done above without having to manually create the role using a third-party plugin, but that said it is not difficult to do it the way I did.

    Hope the hack will help others.

    Best wishes

    Nathan

    Thread Starter nathanwright

    (@nathanwright)

    Hi Marko

    What I was thinking is one of the following:

    * On all post types have an tab called “Hidden” and every meta box that is placed in that is hidden from view for “everyone”

    * Alternatively on the place where you can set the permissions, have an additional check box called “Hide for Everyone”

    Personally I would prefer the first option as this is much easier and visual to see what metaboxes you have hidden from everyone.

    Nathan

    Thread Starter nathanwright

    (@nathanwright)

    Brilliant, yes that fixed it. Thanks for sorting so quickly.

    Hi,

    Yes the use case you have explained is exactly the situation I am experiencing. The odd thing is that I have just tried to replicate this on another device and it is working fine. I have now cleared the cache on the original device and it appears to be work as it should be.

    Sorry about that, it looks like it was down to my browser cache and not your plugin which is working great, I really do love the feature.

    Is there any plans to add the option to hide the normal publish / update button so my users have to use your button?

    Thanks, keep up the great work.

    Nathan

    Thread Starter nathanwright

    (@nathanwright)

    The new Save and Return function is great and works well. One little downside is that the idea of the feature is to take people back to the previous list page where they came from etc but it has a bit of an odd effect when you use the normal Public button a few times within an edit and the press the Save and Return button. It takes you back to the previous page from the Publish and does not return you to the page from where you originally came. The logic should be that when you first display the Save and Return button your should store in say a transient the page where you came from and then each time the Save and Return button is pressed the transient should be cleared. This way you will be returned to the list page rather than the previous page.

    The new Save and Return function is great and works well. One little downside is that the idea of the feature is to take people back to the previous list page where they came from etc but it has a bit of an odd effect when you use the normal Public button a few times within an edit and the press the Save and Return button. It takes you back to the previous page from the Publish and does not return you to the page from where you originally came. The logic should be that when you first display the Save and Return button your should store in say a transient the page where you came from and then each time the Save and Return button is pressed the transient should be cleared. This way you will be returned to the list page rather than the previous page.

    Thread Starter nathanwright

    (@nathanwright)

    Hi

    That is brilliant, thanks for add the feature. It does exactly what I wanted and now makes editing in WP so much faster and works really well with other plugins.

    Thanks so much.

    Nathan

    Thread Starter nathanwright

    (@nathanwright)

    One last thought that may be able to be done without you changing any code.

    Lets say you have a link as follows:

    http://www.aaaa.je/wp-admin/tools.php?page=the-page-name&name=fred&id=23

    So the part that you want to match on is:

    http://www.aaaa.je/wp-admin/tools.php?page=the-page-name

    What if you could do something that happened before you do the hook e.g. in apache or elsewhere so that the incoming url looked like:

    http://www.aaaa.je/wp-admin/tools.php/page/the-page-name/name=fred/id=23

    The in your plugin you could do a match on:

    http://www.aaaa.je/wp-admin/tools.php/page/the-page-name

    And enable the child pages option which you already have. Ok this would only work when the parameters are in the set order but would handle many cases like this.

    This would not effect the processing of your plugin as the matching would still be the same as it is doing now just what is being presented to your plugin would be preformatted.

Viewing 15 replies - 31 through 45 (of 58 total)