thomasgericke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help with boxes in Pagelines themeThank you SO MUCH for this post and the answer. Helped me incredibly after playing around and searching for hours! ??
Forum: Themes and Templates
In reply to: [Customizr] How to change table background color?Works!
Grid has some formatting problems just like tables have (margin, …) but it works for me now. What I miss most: rowspans.
However: thank you! ??
Forum: Themes and Templates
In reply to: [Customizr] How to change table background color?That’s interesting. Last night, I spent like 10 minutes to look for such a support thread (by walking through all thread pages and using Safari’s search function). I (or Safari) couldn’t find any thread. Strange.
It’s (of course) a table for layout purposes: text left, images right. But it’s combined with another reasong: a pricelist, which has descriptions left-aligned and price right-aligned in the same row.
That grid thing sounds interesting. Never heard about it before. I’m gonna give it a try this afternoon.
Thanks a lot for your answer so far!
Forum: Plugins
In reply to: [Social] [Plugin: Social] Scheduled BroadcastingUntil yesterday, I had the same problem: posts were published but not broadcasted to Facebook or Twitter. I used WP 3.something (the version about 3 months old) and Social 2.7.
Last night, I upgraded to WP 3.5.1 and Social 2.8. My last scheduled post was successfully broadcasted to Facebook and Twitter.
Since I will be on some kind of charity vacation for some weeks, I won’t change anything more to the system and I really hope, scheduled posts will be broadcasted over the next weeks… ??
Forum: Plugins
In reply to: [Social] Broadcasting looks ugly on FacebookI’m experiencing the same:
It looks like Facebook changed some internal methods and the Social plugin has not been updated yet?!
I just ran into the same issue. Posts hit facebook perfectly, but there’s no “Share” button.
Could it be, that the post to facebook is just some certain type of “facebook story”, which does not provide the share feature. Some types of “Milestone” on facebook seem to show this behavior.
OMG! That was easy. I simply missed to activate the Slideshow skin.
You probably want to activate that skin by default, unless another skin is uploaded. Just my 2ct ??
Thanks!
Forum: Fixing WordPress
In reply to: (Global) variable issueBTW: this one totally works in a plain PHP file (without WordPress):
Hello World!<BR /> <?PHP echo "Before 1st function: " . $my_var . "<BR />"; function my_function() { global $my_var; $my_var = "true"; return $my_var; } echo "After 2st function: " . my_function() . "<BR />"; function my_2nd_function() { global $my_var; echo "In 2nd function: " . $my_var . "<BR />"; } my_2nd_function(); ?>
When calling the PHP file in a browser, output is:
Hello World!
Before 1st function:
After 2st function: true
In 2nd function: trueSo, it must be a WordPress issue. Can someone help, please?
Thomas
Forum: Fixing WordPress
In reply to: JavaScript:window.open() but: “headers already sent”You may close this one. This wasn’t a JS problem. It rather was/is a problem concerning global variables. See:
One more thing:
It works, if you enter the
<PRE NAME...
thing in HTML editing mode, hit ‘Save Draft’ and preview your post. That totally works!But once you switch to Visual editing mode, the
NAME="code"
part disappears immediately.Solution needed…
… but it seems, the “striping” isn’t done by tinyMCE, because I alsready deactivated *AND* deleted it. Behaviour is still the same.
<PRE NAME="code" CLASS="php">
results in:
<PRE CLASS="php">
Sad thing…
I have exactely the same problem and could not find a solution yet.
Please, anyone may post a solution…