silviod
Forum Replies Created
-
Forum: Plugins
In reply to: [Ninja Tables - Easiest Data Table Builder] Shortcode not workingI have the same problem here: https://www.bartfactory.com/bartubeless/modelli-compatibili/
Forum: Plugins
In reply to: [WP Links Page] Sort links by alphabetical order (asc)?A “sort by date” function (e.g. newer links first, like a in blog) would be very useful too…
Forum: Themes and Templates
In reply to: [Hueman] compatibility issue with MyBookTable plugin.wow! thank you all!
in the next few days I try to put into practice what you have written ??
Thank you very much,
you will be mentioned in the acknowledgments page of the site.
Forum: Themes and Templates
In reply to: [Hueman] compatibility issue with MyBookTable plugin.I think that the page uses the template specific to the plugin: the plugin directory contain files as “…templates/single-book.php” and “…templates/single-book/content.php” and many others.
The template specific for the content of the plugin page (book review) contains only the following code:
<div class="mbt-book-overview"> <?php if(function_exists('st_remove_st_add_link')) { st_remove_st_add_link(''); } global $post; echo(apply_filters("the_content", $post->post_content)); ?> </div>
The “single-book.php” seems to be a container for the various templates that compose the page:
<?php do_action('mbt_content_wrapper_start'); do_action('mbt_single_book_content'); do_action('mbt_content_wrapper_end');
do you think there is a way to apply the theme styles to the pages managed by plugin?
Forum: Themes and Templates
In reply to: [Hueman] compatibility issue with MyBookTable plugin.Ok… I’ll try ??
(apologize for my lack of knowledge, I am learning)Let’s start whit the blockquote,this does not work in the pages operated by mybooktable plugin:
.entry blockquote { position: relative; color: #777; font-style: italic; margin: 0 0 20px 0; padding-left: 50px; } .entry blockquote p { margin-bottom: 0.75em; } .entry blockquote:before { content: "\f10d"; color: #ccc; font-size: 32px; font-style: normal; font-family: FontAwesome; text-align: center; position: absolute; left: 0; top: 0; } .entry blockquote.twitter-tweet:before { content: "\f099"; }
(from style.css)
For example:
a correct page: here (under the first image there is a quote)
a plugin page: here (the quote is displayed identically to the rest of the text)Forum: Themes and Templates
In reply to: [Hueman] compatibility issue with MyBookTable plugin.In particular margins, lists and blockquote in the content text do not work
Forum: Themes and Templates
In reply to: [Hueman] compatibility issue with MyBookTable plugin.update: I emptied the cache and now it work! Both sidebars and title are back!
Thank you very much!!!
only the style is still not applied… but so I’m already very happy.
Do you have any idea on how to fix this last issue?
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Book title disappeaerdPartially resolved, both sidebars and title are back but style still not applied to text: see discussion here
Anyone can help me? ??
Forum: Themes and Templates
In reply to: [Hueman] compatibility issue with MyBookTable plugin.Thank you!
I put the code in the style.css of the child theme: the title of the page reappeared.
But sidebars still pushed at bottom of the text, and and the style is not applied to the text.
Is right where I put the code ? Is there anything else I can try ?Thank you very much!
Forum: Themes and Templates
In reply to: [Hueman] compatibility issue with MyBookTable plugin.Of course, I posted the question on the support group and I was told to ask the theme support group.
Unfortunately I do not have the technical knowledges to solve the problem alone. I thank those who want help .
It happened to me too.
Forum: Themes and Templates
In reply to: [Hueman] Sidebars Color Hueman Backgroundworked!
Thank you very much, MrMountain!I had the same problem too: post list completely disappeared. I’ve tried to change settings, nothing has worked:
https://www.laputa.it/indice-generale/Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] multilanguagenot at all ??
however, it remains to resolve the conflict with WPML because the solution I adopted allows me to translate the site in Italian, but it is not enough for those who use wordpress in multiple languages. Many sites that run more than one language use WPML.
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] multilanguage??
solution (or at least another step forward):you need to add to mybooktable.php these lines:
Text Domain: mybooktable
in header, just after the lines:
Author: Author Media Author URI: https://www.authormedia.com (add line here)
and
load_plugin_textdomain('mybooktable', false, dirname(plugin_basename(__FILE__ )));
just after the
*/
So the result will be:
<?php /* Plugin Name: MyBookTable - WordPress Affiliate Bookstore Plugin URI: https://www.authormedia.com/mybooktable/ Description: A WordPress Bookstore Plugin to help authors sell more books. Author: Author Media Author URI: https://www.authormedia.com Text Domain: mybooktable Version: 1.3.0 */ load_plugin_textdomain('mybooktable', false, dirname(plugin_basename(__FILE__ ))); [...]
after then webmasters can use .po/.mo dictionaries to set string translation, so it becomes localizable WITHOUT using WPML, and Mybooktables back to work! ??
I I have already made ??these changes on github:
https://github.com/sdellacqua/mybooktable/tree/patch-5