FGBmaster
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Photo Album Plus] Can’t delete or rearrange albumsThis looks like am issue I had today with wordpress:
I wanted to get a new password by clicking Forgot Password on login screen. It took more than 10 minutes to get access to the page again.
So maybe it’s a wordpress issue with database transactions?Forum: Plugins
In reply to: [WP Photo Album Plus] WPPA+ Shortcode GeneratorNo errors in Firefox or Chrome.
Forum: Plugins
In reply to: [WP Photo Album Plus] WPPA+ Shortcode GeneratorAnd this is, what I get: http://fotogruppe-bredenbeck.de/ShortcodeGenerator.PNG.
Btw: WPPA+ API Version: 7.3.08.006Forum: Plugins
In reply to: [WP Photo Album Plus] WPPA+ Shortcode GeneratorGutenberg is disabled, Classic Editor plugin enabled. It’s the general generator (icon with Asterisk).
Hi Peter,
thanks for your effort.Best regards,
StefanHi Peter,
I have nothing to send to you and I’m not familiar with information_schema, but https://en.wikipedia.org/wiki/Information_schema says: sqlite doesn’t provide information_schema.
I assume, the plugin wants to check weather a table is present and has the needed columns or something like that? These Informations can be read by pragma-statements, see https://www.sqlite.org/pragma.html.
Hope you can help anyway. My production-site has no access to mysql, maria-db or similar database 🙁 And I would likely have a look on your plugin. It seems to be exactly what I need.Regards
StefanHi Peter,
I am using sqlite. The result of the statement is
no such table: information_schema.schemata: SELECT * FROM information_schema.schemataRegards
StefanForum: Plugins
In reply to: [WP Photo Album Plus] Album owner __public__It works.
Thanks a lot!The problem is fixed by update 1.8.8
Thanks for your support.I’ve sent the completed .po and .mo files.
- This reply was modified 7 years, 8 months ago by FGBmaster.
Hi,
i sent the files on 20th of september. Hope you’ve got them.Forum: Plugins
In reply to: [WP Photo Album Plus] How to limit number of user frontend uploads per albumHave a look on table IX-D6
Forum: Plugins
In reply to: [WP Photo Album Plus] No albums seen on uploadHave you seen this topic:
https://wordpress.org/support/topic/empty-album-listing-list/Forum: Plugins
In reply to: [WP Photo Album Plus] $.GET wwppaIn my humble opinion you will have to call a WordPress page with your shortcode inside, because the shortcode needs to be processed. I think, the page should not have any sidebars, header and footer. Have a look at the shortcode [wppa type=”landing”][/wppa], you can use parameters in the url, to customize the result (for example ?wppa-album=1). That’s important, if you want to have dynamic content, because you can not use any php code inside the WordPress page without an additional plugin.
You can get the data of that page with ajax and display them in a div or iframe tag. That’s what I would try.
Happy coding!- This reply was modified 8 years, 7 months ago by FGBmaster.
Forum: Plugins
In reply to: [WP Photo Album Plus] Need some help with vertical spacing- The code can be created in a post or site
- there are some typos in the previous post: it must be max-height and min-height
Forum: Plugins
In reply to: [WP Photo Album Plus] Need some help with vertical spacingYour slideshow beneath “LazyBoy is Up!” is wrapped in a div-tag like this:
<div id="slide_frame-3" class="slide-frame" style="overflow: hidden; height: 244px; width: 450px; margin-bottom: 8px; margin-left: 0px;">It contains inline-css-attributes
style="..."</style>, where you could add “min-height=250px;max-height=250px;” to force the height of the div-container (250px or what ever you like).You will have to find the file, where this code is created. Or add instructions to your css-file like this (will work for this div only):
#slide_frame-3 { min-heigt:250px; max-heigt:250px; }or like this (will work for all divs with the class “slide-frame”:
div.slide-frame { min-heigt:250px; max-heigt:250px; }Happy coding!
- This reply was modified 8 years, 8 months ago by FGBmaster.