Farlif
Forum Replies Created
-
Sorry. Not su_blockquote, but su_pullquote.
Forum: Plugins
In reply to: [RPS Include Content] Import on clickOkay, I followed your link, and in the last paragraph I learned that it is possible to integrate individual anchor texts to the more tag easily.
Cool!
Well, now I’d like to know this: If I import subtexts this way and only show the individually adapted more tags on the main page, will the complete subtexts yet load already during the fist load of the main page (even if not shown), so that loading the main page is taking heavy times for the server?
Or does clicking the more tag load the subtext, and before clicking it the main page is free of that burden?Forum: Plugins
In reply to: [RPS Include Content] Import on clickThanks, this is a really good idea!
I am just afraid I can’t go that way because I will need to have different link anchor texts for different imports. Anyway, thanks for your fast and inspired support!Forum: Plugins
In reply to: [RPS Include Content] Import on click*subpages not subtitles
sorryForum: Plugins
In reply to: [Wp-Insert] Not Saving my SettingsNo, @cepeteus, the button is really hidden between all the other “like us” or “rate us” fields. I also had to find this thread to have the issue solved. You’re not alone. 😉
Ok, I deactivated “inherit width from container” – now it seems to work. 🙂
It’s a great plugin, by the way!Thanks,
StefanHi Max,
thanks for answering so fast!
Here’s a screenshot:
I just marked the sidebar on the left – and the blue field occurred …
The two purple fields mark examples for possible interactions by the user.
https://copy.com/lxtagsLelQt3Meanwhile I had asked my question on your own website – sorry.
As I said there, it seems as if the fixed sidebar widget produces a layer which lays over everything else … Maybe there’s a way to contain that layer?Thanks,
StefanGreat support, Tobias! 🙂
For those with the same question: “Rich Tax Description Editor” solved the problem and seems to work neatlessly with TablePress.
Best,
StefanOk, I’ll look for one as you recommended. Thanks anyway!
Hi Tobias,
thank you so much for your fast and kind answer!
Unfortunately your solution doesn’t really work in my case. Probably my fault, perhaps I should have had described the situation better.Here’s what I am trying to achieve: I want to have a text on the category page in which a table is embedded.
The theme didn’t allow me to do html in the category description in the first place, so I took the “HTML in Category Description” plugin, which makes it possible to insert a complete text page – except the table.Now, if I replace the category_description by do_shortcode I lose the ability to insert html text and also the table in the text doesn’t appear. But if I just add your do_shortcode line to the existing code, nothing happens. Maybe another solution?
Thanks again, Tobias, and in advance merry x-mas days!
StefanForum: Plugins
In reply to: [WP-Print] Help! Plugin killed my WebsiteThanks, I tried that, but it didn’t work. Seems as if wp-print has written some code in any core files or elsewhere.
Meanwhile I found an totally different way to restore my Sites.Here is what helped:
- Access to the server by my FTP (I’ve got a Mac, so I use Cyberduck instead of filezilla),
- deactivate the .htaccess file on the server by renaming it to _.htacess.
- then I was able to enter the admin area again,
- there under settings/permalinks I refreshed the permalinks,
- the refreshing creates automatically a new .htaccess fileon the server.
- The lines automatically set there I deleted in the old .htaccess file,
- then copied the rest of the content of the old _.htaccess file to the new .htaccess file.
Et voilà!
Forum: Plugins
In reply to: [W3 Total Cache] WT3C shows random pages in multisite installationOk, but thanks for trying, laurionb!
Maybe anyone else knows how to deal with the problem?Forum: Plugins
In reply to: [W3 Total Cache] WT3C shows random pages in multisite installationThanks for coming back, larionb.
I have a single database with a multidomain wordpress installation and several blogs running on it. A friend of mine set it up for me by adding some lines to the config.php, I couldn’t have done it. It’s a hack by Richard Martin:
$table_prefix = ereg_replace(‘^(www\.)’, ”, $_SERVER['HTTP_HOST']); $table_prefix = ereg_replace(‘\.’, ”, $table_prefix); $table_prefix = ereg_replace(‘\-’,”, $table_prefix); $table_prefix = $table_prefix . ‘_’;
It works very fine, e.g. if I install a plugin on one of the websites, the other sites have got it too, it just has to be activated there. The only issue I had until today was creating the xml-sitemap by the Google XML Sitemap plugin (every single blog tried to create a “sitemap.xml” in the same root directory, and I had to rename them to sitemapblog1.xml, sitemapblog2.xml …, so that each blog has it’s own one now). The two problems seem to me as if they are somehow related … Maybe WT3C tries to find and use the sitemap, so that’s a possible source of error too.My hoster doesn’t allow me to use APC or memcache, so it’s just disk.
Does anything of this help?
Forum: Plugins
In reply to: [W3 Total Cache] WT3C shows random pages in multisite installationThank you laurinb,
for I am not a php programmer I have to follow your guidance step by step like a virtual sheep … better I ask back, before I crash everything here …
In w3-total-cache/wp-content/db.php I write it that way, right?:
if (!@is_dir(W3TC_DIR) || !file_exists(W3TC_DIR . '/inc/define.php')) { if (!defined('WP_ADMIN')) { // lets don't show error on front end require_once (ABSPATH . WPINC . '/wp-db.php'); } else { @header('HTTP/1.1 503 Service Unavailable'); die(sprintf('<strong>W3 Total Cache Error:</strong> some files appear to be missing or out of place. Please re-install plugin or remove <strong>%s</strong>.', __FILE__)); $key = md5(__FILE__) . '_' . $key; } } else { require_once W3TC_DIR . '/inc/define.php'; $config = & w3_instance('W3_Config'); if ($config->get_boolean('dbcache.enabled')) { if (defined('DB_TYPE')) { $db_driver_path = sprintf('%s/Db/%s.php', W3TC_LIB_W3_DIR, DB_TYPE); $key = md5(__FILE__) . '_' . $key; if (file_exists($db_driver_path)) { require_once $db_driver_path; } else { die(sprintf('<strong>W3 Total Cache Error:</strong> database driver doesn\'t exist: %s.', $db_driver_path)); $key = md5(__FILE__) . '_' . $key; } }Thanks again!
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] WP 3.4 Multi site and W3TCme too