palatino
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Customer Reviews] Not usable for non English sitesWell, I saw many complaints about this issue, some of which are more than two years old. So it doesn’t seem this is something you have on top of your agenda.
I would have been happy to provide translations (as I regularly do for plugins I like – if they are usable with the WordPress translation API).
Creating branches and coding is beyond my abilities. I am sorry.
- This reply was modified 6 years, 11 months ago by palatino.
Forum: Plugins
In reply to: [Discussion Board - WordPress Forum Plugin] Error when commenting a topicHi, I apologize – it was an error with the comments table. No error in discussion board plugin. Thanks for your quick reply anyway!
Forum: Plugins
In reply to: [WP Kanban] Plug in doesnt display properly@rachruth, @drmen8x, @dragogio
The API helper is just that: a helper to find the right ID from Trello.Then you can use the plugins shortcodes for boards, lists and cards and display them by simply adding the ID you got from the API helper page. It is not supposed to save anything, just gets the IDs from Trello as they are in this very moment.
A brief test on the integration can be seen here. Beware – its in German.
Forum: Plugins
In reply to: [WordPress Calls to Action] Clear Stats Link Not WorkingSame here. Disabling other plugins and changing the theme to default WP theme does not help. Update to newest WP 4.2 does not help. Debugging with console does not show anything. Reinstalling plugin does not help.
Any recommendation is appreciated…
Forum: Plugins
In reply to: [Front End PM] BBCode does no t workBy the way: It would be nice if you add a link to my profile page in your plugin description translators list.
Cheers, Palatino
Forum: Plugins
In reply to: [Front End PM] BBCode does no t workThank you Shamim,
it looks almost great now.
Only the lines get spread out very wide due to your style rules:
#fep-content th, #fep-content td {white-space: pre-line;}Are they necessary?
Also there are a few words not prepared for translation: So far I found “annoncement” and “ago”.
I’d be happy to add the respective translations as soon as the pot file includes them.
Thank you for this plugin
PalatinoForum: Plugins
In reply to: [Post PDF Export] Adding images to template bodyI wrote something about that here:
https://www.ads-software.com/support/topic/images-not-showing-up-in-pdf-everywhere-image-not-foundForum: Plugins
In reply to: [Post PDF Export] Formatting questionLine 159 in /inc/shortcode_class.php should go like this:
$item = apply_filters( 'the_content', get_the_content() );
in order to apply the complete html tags. Otherwise <p> tags will be stripped away and the pdf does not have line breaks.
So you don’t need to add line breaks. WordPress adds them automatically. See here:
https://wordpress.stackexchange.com/questions/32716/how-to-force-p-insertion-in-editorForum: Plugins
In reply to: [Post PDF Export] Images not showing up in PDF, everywhere 'Image not found'Hi Harry,
you need to change a line in /wp-content/plugins/post-pdf-export/dompdf/dompdf_config.custom.inc
uncomment line 11 so it reads like this:
define("DOMPDF_ENABLE_REMOTE", true);
This allows for download of images.
Good luck
palatinoForum: Plugins
In reply to: [Flexible Frontend Login] ResponsiveYou should use the custom CSS like this:
Copy the
ffl-style.css
from the plugin’s css folder into this location:
/path/to/your/theme/flexible-frontend-login/ffl-style.css
Do any changes you need. Access the table with
#ffl-boxes #ffl-dialog table {}
To make it more convenient I will add CSS classes to each element in the next version which is 1.0.3Forum: Plugins
In reply to: [Flexible Frontend Login] change the click on close button to click anywhereThis seems to work now.
Forum: Plugins
In reply to: [Flexible Frontend Login] Incompatibility with MarkdownThank you Boulli,
I will look into all your suggestions and take on those I understand ??
Markdown has gone now since version 1.0Forum: Plugins
In reply to: [Flexible Frontend Login] Login box shows when it is not supposed to.Hi rajaito,
this usually happens when the page is not loaded completeley due to some caching plugin issues. Then the javascript to hide the login form is not loaded because it is loaded at the end of the page. Make sure to find out if all files of your site are loaded properly. The WebDeveloper Firefox extension is very helpful in such cases.
Forum: Plugins
In reply to: [Flexible Frontend Login] TranslationsI hope this is resolved now with version 1.0.1
Feel free to open a new thread if you still encounter difficulties with translations.Forum: Plugins
In reply to: [Flexible Frontend Login] Use in main menu?Hi Ron. if you call the function its output will be a link which via JQuery opens the modal login window. However you cannot put the function into a menu item. But since the output is wrapped in
<div class="flexible-frontend-login"></div>
you can put it next to your menu and then style it with CSS the same way as your menu in order make a seamless integration. I hope this helps.