Matthew
Forum Replies Created
-
Forum: Plugins
In reply to: [DsgnWrks Importer for Instagram] Instagram Access Token revokedFor me, the issue was that the instagram account user had reset their password. Thus a new access token had to be created.
Forum: Plugins
In reply to: [DsgnWrks Importer for Instagram] Instagram Access Token revokedFor me, it was about the first week of October. But it didn’t happen to all our sites. Just the ones on a certain server.
I wondered if there was something specific about our server config.
I guess the revoke came from Instagram.
Forum: Fixing WordPress
In reply to: .com missingCheck your Site URL is correct in General Settings.
Also, I would try re-uploading all the core WordPress files.
Strange issue though – I’ve never seen it before.
Hope this helps.
Forum: Plugins
In reply to: [InstaTeam Instagram Importer] Instagram URL as meta?Ok, I worked it out. These are the edits:
Open instagram_wpteams.php
After line 934 add:
$photo_link = $data->link;After line 959 add:
add_post_meta($post_id, 'photo_link', $photo_link, true);After line 992 add:
add_post_meta($post_id, 'photo_link', $photo_link, true);After line 1026 add:
$photo_link = $data->link;After line 1050 add:
add_post_meta($post_id, 'photo_link', $photo_link, true);After line 1083 add:
add_post_meta($post_id, 'photo_link', $photo_link, true);After line 1177 add:
add_post_meta($post_id, 'photo_link', $photo_link, true);After line 1219 add:
add_post_meta($post_id, 'photo_link', $photo_link, true);Forum: Installing WordPress
In reply to: Optimized Hosting Setup – easy apacheThanks @catacaustic – really appreciate the feedback!
The site doesn’t have a lot of traffic. We use WT3 cache and a CDN which means the front-end is nice and fast, but the back-end is particularly slow and the store checkout is also slow as this is outside the CDN.
Perhaps I need to do some more diagnostics.
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Multiple Choice taxonomiesFYI, this has now been fixed. The issue was that I had previously used a GF Update Post plugin which seemed somewhat buggy. It has been redeveloped here and fixed all my problems.
https://bitbucket.org/jupitercow/gravity-forms-update-post
Note: my original bug wasn’t due to the Gravity Forms + Custom Post Types plugin but instead by the Update Post plugin.
Forum: Plugins
In reply to: [WooCommerce] Using WooCommerce for event / course bookingsI would suggest integrating WooCommerce with Modern Tribe’s events calendar using this extension. A great solution for adding e-commerce functionality to an events calendar.
Forum: Themes and Templates
In reply to: Skin for wp-smooth backgroundThe background on the old site can be found here, which is the same size:
http://crunchyprices.com/wp-content/themes/wp-smooth-premium/images/red/bodybg.jpgI would suggest making the background-position:fixed in the CSS. Alternatively get a graphic designer to create a larger graphic. I would recommend the former.
Forum: Themes and Templates
In reply to: Custom CSS file per page templateTake a look at the source code, you will see the body tag has a number of classes. One of these will be a specific page id.
For example, you can then use the CSS:
body.page-id-4 #wrapper { background-color:#000 !important }This will select the tag with an ID wrapper within the Page ID 4.
Forum: Themes and Templates
In reply to: Custom CSS file per page templateCan you provide a link to your custom about page?
Forum: Themes and Templates
In reply to: Need help with imagesOk, also remove line 255 and 266 which also have margin values from your CSS.
Forum: Themes and Templates
In reply to: Skin for wp-smooth backgroundSure, you can find it here:
http://absolutelylondon.com/wp-content/themes/wp-smooth-premium/images/black/bodybg.jpgDownload and open up in Photoshop to edit. You will need FTP access to replace the file.
Forum: Themes and Templates
In reply to: Custom CSS file per page templateI would suggest adding the custom styles to the usual style.css file. You can apply your CSS code to specific pages by selecting elements using the body class. Details of this can be found within the codex here:
http://codex.wordpress.org/Function_Reference/body_classForum: Themes and Templates
In reply to: Comment BoxTake a look at the options available to you within Settings >> Discussion within your WordPress admin area.
Forum: Themes and Templates
In reply to: backgroundYou will need to update your CSS file to achieve this. However, note you have content within this header area which will be hidden if you reduce the height of your header area.
You will need to learn a little bit about CSS or have your web developer do it.
Take a look at line 782 of:
/wp-content/themes/realtorpress/themes/realtorpress-HUB-design/css/styles.css