granville
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp_options irreparably damagedThanks Steve. Yes will make sure that the backups are more than once a month!
In this particular instance, the files are hosted by an independent company (e.g. not myself or a large company like GoDaddy)
The company resell a hosting package to my client. Is it possible that there is a fault with the hosting that could have caused a table file to become corrupted?Hi Jeremy.
Thanks for your reply. Didn’t realise I was wrong to try and use the [jpshare] shortcode on an individual event page..assumed it would run as a normal page.The Events settings are on – so it appears it doesn’t work on the list of events page either; though the goal was to put the sharing on the individual events page, so whilst that’s odd it’s not actually a requirement.
Could you let me know what the php code is that calls the sharing buttons? I could then create a new events page plugin and put it in there.
ThanksForum: Themes and Templates
In reply to: [Sydney] Slider text offset to the right after updateHello
Thank you for your reply.
I’m guessing the flex-viewport class was added by Bistro? I don’t believe that any of the plugins that i am running would require this to be added to the slider.
In any case, thank you for your help. Your css did work, in conjunction with removing the slider call in the function. However, as per my other support question, unfortunately with the extra blank white screen that removing the inc/slider line from the functions meant that I have reverted back to my old css fix.
I’ll mark this as resolved, and hope that we can resolve the other issue separately.
ThanksForum: Themes and Templates
In reply to: [Bistro] Can’t stop slider text from slidingHello
Thank you for your reply (and for my other post regarding offset text.)
I removed this line 90, and it did indeed fix the static text issue.However, it created two new issues:
1 – at the beginning of the slider html it created a new class “slide-inner2” which was a white background and had the text displayed in the top left corner. Once the slide started with the first slide it all worked well, but unfortunately the site always started with this white screen and duplicate text.
2 – the call to action button was missing.
As such, I’ve decided to put the site back the way it was, so unfortunately you won’t be able to see it. However, perhaps this is a compatibility issue with the Bistro theme, that I am running? Please could you take a look?
Thanks
Forum: Themes and Templates
In reply to: [Bistro] Can’t stop slider text from slidingHi Roman
Thanks for replying previously. I have updated the latest theme but it still isn’t working. Can you tell me if they are still working on a fix, or if I need to do something else?Thank you
Forum: Plugins
In reply to: [BuddyPress Wall] Post on another member's wall disappearingAh sorry! I had a typo in my policy permission. All working well; and in case anyone else is interested, it works straight away with rtmedia.
Thanks for a great plugin! ??Forum: Plugins
In reply to: [Add From Server] Error after activation of 'Add from server' pluginI know it’s old but just want to say thanks to krkowallis – ran into the same issue today and your fix worked
Forum: Plugins
In reply to: [BuddyPress Activity Privacy] How to set default activity privacy levelMy apologies – I’ve just seen that this thread is marked as resolved. So please ignore my previous comment and I’ll start a new thread with the same question. Thanks
Forum: Plugins
In reply to: [BuddyPress Activity Privacy] How to set default activity privacy levelHi @megainfo
Great plugin thanks – I’ve used the code you provided above to change the default visibility to “friends only” and all is good…except these three activity updates:
1. “user” became a registered member;
2. “user” changed their profile picture;
3. “user” and “user” are now friendsstill appear to all users, rather than just the “user”‘s friends.
Please can you tell me how I can make these three updates “friends only” also?
Many thanks
G
Forum: Themes and Templates
In reply to: [Twenty Eleven] [Theme: Twenty Eleven] Home pageGood point Esmi – sorry didn’t think about the fact that we were editing the core theme.
Follow Esmi’s guide and then use the style changes above.Forum: Themes and Templates
In reply to: [Twenty Eleven] [Theme: Twenty Eleven] Home pageHi Matt Zarr
It doesn’t need many changes. I don’t know how you’ve structured your site, but the best thing you can do is to put an id on your home page <body> tag so any styling you do on the home page doesn’t change for the rest of the site.So in your header.php file find the <body> tag and replace it with
<body <?php if (is_home()) { echo " id=\"home\""; } ?> >
Now we need to make everything in the white space fill the screen, which we do with using a width of 100%.
So you need to add the following to your stylesheet:
#home #container, #home #content, {width: 100% !important; margin: 0 !important; padding: 0 !important}
Now we need to make the image fit the space by adding:
#home img {width: 100% !important; height: 100% !important; }However, the width to height ratio of your image means that it’s now huge…so I’d suggest changing this in photoshop so it doesn’t take up so much space.
Lastly, you should take the text off the image and actually write that text in HTML. These means search engines will find it, it will be more accessible, and it will look better.
Hope this helps.
G
Hi Fanoop. I took this question over to the WPMU developers and they have now created an update so the enter key now works; plus it has a loading gif too.
I’ve tested it on 1.5.1 and it works.Forum: Fixing WordPress
In reply to: functions.php change logo and link login pageHi kortschot and alchymyth
Great work both of you! I just wanted to add something else to this, seeing as I found this via Google and I guess other’s will too. Also, can’t see anyone else having mentioned this in other related posts, which are now all locked down.
When you hover over the image, it still shows Powered by WordPress; so I added extra code to change this too, extending what you guys did above://changing the logo function my_custom_login_logo() { echo '<style type="text/css"> h1 a { background-image:url('.get_bloginfo('template_directory').'/images/your-logo.png) !important; } </style>'; } add_action('login_head', 'my_custom_login_logo'); // changing the login page URL function put_my_url(){ return ('https://www.yourdomain.com/'); // putting my URL in place of the WordPress one } add_filter('login_headerurl', 'put_my_url'); // changing the login page URL hover text function put_my_title(){ return ('Name of Your Website'); // changing the title from "Powered by WordPress" to whatever you wish } add_filter('login_headertitle', 'put_my_title');
Feel free to close off the thread!
Forum: Plugins
In reply to: [W3 Total Cache] Server Error Message — Unable To Activate W3 Total Cachehi Wordweaver777
The most concerning thing in that list is the Fatal Error at the end, which shows that you’ve run out of Memory. The number 33554432 actually refers to 32M of memory.
So you’re WP installation is saying 32M is not enough.So try increasing it by adding this to your WP-config file, at the top after the <?php
define(‘WP_MEMORY_LIMIT’, ’64M’);
Hope this helps,
Rob G