Lana Design
Forum Replies Created
-
Forum: Plugins
In reply to: [Lana Facebook Share] All likes return to zero! :(Yes, change http to https also url modification. I’m glad we managed to find the problem.
Sincerely,
István MártonForum: Plugins
In reply to: [Lana Facebook Share] All likes return to zero! :(Or may it have changed the url format?
For example, past: https://example.com/post_name and now https://example.com/date/post_name
I think in this case, the like goes wrong as well.
Sincerely,
István MártonForum: Plugins
In reply to: [Lana Facebook Share] All likes return to zero! :(Hi Kevin,
https://mini-we.be/2017/07/23/post-12-derde-keer-goede-keer/ – this post has 15 likes. I think the plugin works well.
If you change the post url (also known as post slug or post permalink), the like resets. Because the facebook like system is url-based.
I think your wife may have modified the post url.If you have any problems, please contact me with confidence.
Sincerely,
István MártonForum: Plugins
In reply to: [Lana Downloads Manager] Change the download textYou can enable Bootstrap framework if you use Lana Widgets in Settings > Lana Widgets, and then show the Bootstrap based button. (But Lana Widgets primary developed for Bootstrap based WordPress themes).
HTML link or button are customizable with CSS. It also depends on the used WordPress theme.
Yes, track download if you use the download URL.
Forum: Plugins
In reply to: [Lana Downloads Manager] List of downloadsMaybe:
<?php if ( function_exists( 'lana_downloads_manager_get_download_url' ) ): ?> <a href="<?php echo esc_attr( lana_downloads_manager_get_download_url( get_the_ID() ) ); ?>">Download</a> <?php endif; ?>
So
lana_downloads_manager_get_download_url()
function return the download id, first param the post id.I’m not sure, try it, let me know if it does not work. ??
Forum: Plugins
In reply to: [Lana Downloads Manager] Change the download textIn this case, do a custom button with download URL.
HTML example:
<a class="btn" href="https://wp.lanaprojekt.hu/blog/download/93/"> Download this file </ a>
Lana Widgets example:
[lana_button size="md" type="default" href="https://wp.lanaprojekt.hu/blog/download/93/"]Download this file[/lana_button]
Forum: Plugins
In reply to: [Lana Downloads Manager] List of downloadsI try to help.
Lana Download is a post type.
Post type: ‘lana-download’How to Create a Custom Post Types Archive Page in WordPress
You have to make archive page in theme.
So create archive-lana-download.php and add post list php code.Example: /wp-content/{theme}/archive-lana-download.php
<?php get_header(); if(have_posts()) : while(have_posts()) : the_post(); ?> <?php the_title(); ?> <div class="entry-content"> <?php the_content(); ?> </div> <?php endwhile; endif; get_footer(); ?>
- This reply was modified 7 years, 7 months ago by Lana Design. Reason: add code tag
Forum: Plugins
In reply to: [Lana Downloads Manager] Change the download textI add text atts to shortcode in Lana Downloads Manager 1.0.8 just now for you. ??
Example:
[lana_download file=”test-2″ text=”Download version 3.4″]– change download button text to “Download version 3.4”
Forum: Plugins
In reply to: [Lana Security] Some suggestionsSorry for the late answer.
– WP core scan little complicated to do in WordPress plugin, but interest idea.
– I thought about changing admin url, but I think if you have captcha is enough defense. But the idea is not discarded, it may be later developed.
– Currently used captcha is simple and user-friendly. Complex captcha do more time needlessly, because best bots can crack all captcha (also Google captcha). I think currently used captcha enough protection from simple bots.
– Firewall? A software firewall is doing the OS, not the webserver (for example apache). Even better hardware firewall. Such as software-based firewall can not protect against DDoS attacks. You think of an simple IP filter? IP filter need large and complex system and database, not optimal in WordPress.Thank you for the advices. I think about them. ??
Forum: Plugins
In reply to: [Lana Facebook Share] Sharing only last postI tried Hydrogen theme and Gantry 5 Framework. Lana Facebook Share works well in post list page and post page.
Maybe try to get everything updated to the latest version. I tried WordPress 4.7.3, Hydrogen 5.4.10 and Gantry 5 Framework 5.4.10
Or it could be another plugin to blame. Plugin which modifies post url?!
Forum: Plugins
In reply to: [Lana Downloads Manager] MIrror Download SuggestionWhat do you think exactly?
Forum: Plugins
In reply to: [Lana Downloads Manager] Change the download textButton text in frontend? Maybe you can try create own button with the download link.
Forum: Plugins
In reply to: [Lana Facebook Share] Sharing only last postIn share button: https://www.facebook.com/sharer/sharer.php?u={post link}
So in button add the post permalink (with the “u” mean url part).
The share button use global $post.For some reason, error with $post variable. This is possible with the theme error.
If you give website link (with activated Lana Facebook Share plugin) or theme name (I download and testing). I checked the problem.