zefs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Read more link wrapped in paragraph.I found a clever way to do it using CSS, you just go to the entry-content div and call the last <p> like so:
.entry-content p:last-child { margin-bottom:-5px; }
Forum: Fixing WordPress
In reply to: Re-enable hidden page titles.Yeah, it was on content-page.php as you said. Funny, because I searched on every file using ctrl+f on browser but it didn’t grab it.
Thanks!
Forum: Fixing WordPress
In reply to: Re-enable hidden page titles.The theme is just a customized Twenty Twelve. I also thought it was on functions.php but can’t find anything related. Here’s the website:
Forum: Fixing WordPress
In reply to: Can't update to newer versionsIt’s based on the twenty twelve theme though, just modified.
Forum: Fixing WordPress
In reply to: Can't update to newer versionsWill my theme/database work after the upgrade? It’s a custom theme so I don’t want to lose all the work done on it.
Forum: Fixing WordPress
In reply to: Can't update to newer versionsI just tried to switch to the default theme to see if the update will start and got the same issue. Then I tried to use plugins.deactivate from FTP to see if that’s causing it and now I am left with a blank when I enter the site although it was working.
Also getting this:
Fatal error: Cannot redeclare twentytwelve_setup() (previously declared in /home/a2175721/public_html/wp-content/themes/ArcheAge/functions.php:60) in /home/a2175721/public_html/wp-content/themes/twentytwelve/functions.php on line 77Forum: Plugins
In reply to: Hide Plugin Simple Share Buttons Adder in my PortfolioI also wanted to do the same, I just added the [ssba_hide] you suggested on the page and it disappeared so thank you for that.
Forum: Fixing WordPress
In reply to: Blank dashboard pageI did some changes on functions.php / styles.css etc. No other updates or plugin installs. Actually I did update Simple Share Buttons Adder to 3.1 version.
So, I seem to not be able to install new plugins with Simple Share Buttons activated, the installation freezes.
Both contact-form 7 and simple share buttons seem to be causimg me issues.
Any ideas?error: Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 30720 bytes) in /home/a2175721/public_html/wp-admin/includes/template.php on line 1613
Forum: Fixing WordPress
In reply to: Blank dashboard pageSeems to be contact form 7. It was working fine, how can I fix this?
Forum: Fixing WordPress
In reply to: Mass insert media not workingYeah, I just don’t make them a gallery because I don’t like how it looks. Anyway, thanks for the quick response!
Forum: Fixing WordPress
In reply to: Mass insert media not workingYou can shift-click and it selects all of them. But when hitting insert to post nothing happens. Only when selecting 3 of them works for me.
Forum: Fixing WordPress
In reply to: Mass insert media not workingIndividual images.
Forum: Fixing WordPress
In reply to: Random background image phpThe css(first post) works on my none-wordpress sites as I said.
But for that wordpress site it doesn’t, on chrome inspector I get this error whenever I try to parse php in the background:url property of the theme’s style.css: “invalid property value”.
I tried both full and relative paths with no luck.
Could it have to do with me deleting the .htaccess file after the wordpress installation?I also asked on stackoverflow, none of the solutions worked:
https://stackoverflow.com/questions/17291408/random-background-images-in-wordpressForum: Fixing WordPress
In reply to: Random background image php1. I use php include.
2. I tried that(doesn’t work).It seems that whenever I try to parse PHP in CSS it just doesn’t work, any idea why? only happens on my wordpress site, not on my other static websites on the same server.
Forum: Fixing WordPress
In reply to: Exclude categories from main page questionNot sure if I described that correctly, here’s what I am trying to do:
if ( $query->in_category(-3) && in_category(-7) ){ //display the posts that are included in these two categories(3,7) } //else if they are in any of each of these categories(not both)hide them else { $query->set( 'cat', '-3 -7');}