dryice
Forum Replies Created
-
Yes I have this same issue on https://castlerockbirth.com
Forum: Plugins
In reply to: [Responsive Slider] Remove bottom navigationAlso I get a li > in front of each photo with my theme. LE SIGH
Forum: Plugins
In reply to: [Responsive Slider] Remove bottom navigationI was able to remove the bottom navigation by adding the tag “opacity: 0;” to everything related to .flex-control-nav in the css file. I have not been able to successfully remove the 24px margin under the image though.
Forum: Plugins
In reply to: [Responsive Slider] Remove bottom navigationWondering the same.
Forum: Fixing WordPress
In reply to: User Role Change Not SavingNo it was another plugin entirely. I found it and deactivated it and it worked fine.
Forum: Plugins
In reply to: [WebLibrarian] Collection Type PagesHas any additional thought been put into adding the filter feature?
Forum: Plugins
In reply to: [Sync Facebook Events] Quit SyncingAnybody find an answer yet?\
Forum: Plugins
In reply to: [Sync Facebook Events] Blank PageWondering the same myself.
Forum: Plugins
In reply to: [AutoChimp] Activation Error on AutoChimp 2.15I get the exact same thing
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /…/public_html/wp-content/plugins/autochimp/autochimp.php on line 852
Hoping it isn’t a wordpress 3.8 issue.
Forum: Plugins
In reply to: [WebLibrarian] Export Collection issue with Amazon DescriptionsIs there a way to not not pull anything for the description on Amazon? It always pulls junk.
Forum: Plugins
In reply to: [WebLibrarian] Collection Type PagesThat would be super. ??
Forum: Plugins
In reply to: [WebLibrarian] Default listing orderbyterjemar,
Lines 28 – 31?
$searchby = isset($_REQUEST['searchby']) ? $_REQUEST['searchby'] : 'title'; $searchbox = isset($_REQUEST['searchbox']) ? $_REQUEST['searchbox'] : ''; $weblib_orderby = isset( $_REQUEST['weblib_orderby'] ) ? $_REQUEST['weblib_orderby'] : 'barcode'; if ( empty( $weblib_orderby ) ) $weblib_orderby = 'barcode'; $weblib_order = isset( $_REQUEST['weblib_order'] ) ? $_REQUEST['weblib_order'] : 'ASC'; if ( empty( $weblib_order ) ) $weblib_order = 'ASC';
to this?
$searchby = isset($_REQUEST['searchby']) ? $_REQUEST['searchby'] : 'title'; $searchbox = isset($_REQUEST['searchbox']) ? $_REQUEST['searchbox'] : ''; $weblib_orderby = isset( $_REQUEST['weblib_orderby'] ) ? $_REQUEST['weblib_orderby'] : 'title'; if ( empty( $weblib_orderby ) ) $weblib_orderby = 'title'; $weblib_order = isset( $_REQUEST['weblib_order'] ) ? $_REQUEST['weblib_order'] : 'ASC'; if ( empty( $weblib_order ) ) $weblib_order = 'ASC';
Forum: Plugins
In reply to: [WebLibrarian] AWS Import ImageAlso for my own reference when an update is released and those always using any other size but small, I made a change at line 227 – 231 of AWSFunction.js
var smallimage = item.getElementsByTagName('SmallImage')[0]; if (smallimage != null) { var smallimageURL = smallimage.getElementsByTagName('URL')[0].childNodes[0].nodeValue; win.WEBLIB_InsertThumb(smallimageURL);
changed to:
var mediumimage = item.getElementsByTagName('MediumImage')[0]; if (mediumimage != null) { var mediumimageURL = mediumimage.getElementsByTagName('URL')[0].childNodes[0].nodeValue; win.WEBLIB_InsertThumb(mediumimageURL);
Forum: Plugins
In reply to: [WebLibrarian] AWS Import ImageGreat! Thanks.
I made an additional change to the admin.css to
#aws-formframe {
width: 100%;
height: 750px;I made it bigger to see the entire image, just felt less cramped IMHO.
Thanks again for the change.
Forum: Plugins
In reply to: [WebLibrarian] Check OutI have. I changed it back for the screen capture. Notice the focus on the patron drop down.