Mike
Forum Replies Created
-
Forum: Plugins
In reply to: Anyone know of a plug in that will scroll the content of just one post?How is the fixture list created? Is it an external page (not WordPress), a PDF or what?
Forum: Plugins
In reply to: [PureTheme Slide Social Tabs] will work with iconic oneNot sure about that theme, but there should be a menu item in the admin dashboard titled “PT Social Tab”. That is where you enter your social information.
To redirect requests for sub.yourdomain.com/uri to yourdomain.com/uri:
RewriteEngine on RewriteCond %{HTTP_HOST} ^sub.yourdomain.com$ RewriteRule ^(.*)$ https://yourdomain.com/$1 [R=301,L]
Forum: Plugins
In reply to: [Responsive Full Width Background Slider] Randomise SliderGlad to see this option made its way into the latest version. No need to hack things anymore ??
Forum: Plugins
In reply to: [Responsive Full Width Background Slider] Allow Specific PageEach page presents an option to disable it on that particular page though.
Forum: Plugins
In reply to: [Responsive Full Width Background Slider] Number of SlidesClick the Green Add Image button ??
Forum: Plugins
In reply to: [Responsive Full Width Background Slider] Randomise SliderFor anyone interested, the fix above is almost correct. It seems the 1 or 0 (Enable/Disable) is stored as a string. So, the following will let the images be randomized.
In responsive-full-width-background-slider/inc/rfwbsFrontClass.php
Replace:
$rfwbs_imgsArr = $options["rfwbs_img"];
With:
$rfwbs_randomise = $options["rfwbs_randomise"]; if ($fwbs_randomise == "1") /* 1 = Enabled */ $rfwbs_imgsArr = shuffle($options["rfwbs_img"]); else $rfwbs_imgsArr = $options["rfwbs_img"];
And to get the random option on the settings page, add this.
In responsive-full-width-background-slider/inc/rfwbs-settings.php
Locate:
<tr> <td><?php _e("Overlay",'rfwbs'); ?> :</td> <td> <select id="rfwbs_overlay" name="rfwbs_settings[rfwbs_overlay]"> <option value="1" <?php selected('1', $rfwbs_getOpts['rfwbs_overlay']); ?>><?php _e('Enable','rfwbs'); ?></option> <option value="0" <?php selected('0', $rfwbs_getOpts['rfwbs_overlay']); ?>><?php _e('Disable','rfwbs'); ?></option> </select> </td> </tr>
Right below that add:
<tr> <td><?php _e("Randomise",'rfwbs'); ?> :</td> <td> <select id="rfwbs_randomise" name="rfwbs_settings[rfwbs_randomise]"> <option value="1" <?php selected('1', $rfwbs_getOpts['rfwbs_randomise']); ?>><?php _e('Enable','rfwbs'); ?></option> <option value="0" <?php selected('0', $rfwbs_getOpts['rfwbs_randomise']); ?>><?php _e('Disable','rfwbs'); ?></option> </select> </td> </tr>
That will give you an enable/disable option on the settings page, right below the overlay option.
Forum: Plugins
In reply to: [Responsive Full Width Background Slider] Randomise SliderOr use your code above and mine (just above as well) and that will give you to choose if it shows as random or not ??
Forum: Plugins
In reply to: [Responsive Full Width Background Slider] Randomise SliderYou’ve already added the randomise backend option, so to get it to show a different image order each page load, do this.
In responsive-full-width-background-slider/inc/rfwbsFrontClass.php
Replace:
$rfwbs_imgsArr = $options[“rfwbs_img”];With:
$rfwbs_randomise = $options[“rfwbs_randomise”];
if ($fwbs_randomise == 1)
$rfwbs_imgsArr = shuffle($options[“rfwbs_img”]);
else
$rfwbs_imgsArr = $options[“rfwbs_img”];Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] show list of themesYou would have to use the Select Field type and enter the list of themes manually. There is no way to get the themes on your site as far as I can see.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Display category name in frontendSounds like you are having it return the Term ID for the taxonomy. In the Return Value section select “Term Object”.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Multiple Field Groups on Post?If you are using “User” from the dropdown, change this to “Logged in User Type” and select Administrator as the user type and you should see it only if logged in as admin. Do the same for the editor level. Hope this helps!
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Multiple Field Groups on Post?Not sure about the user restrictions, but you can indeed have multiple field groups at a time on a post. Several of my personal setups use 2 field groups, one in the main area and one in the sidebar. But placement does not matter.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] ACF for many post10 different custom fields per post? Not sure this plugin is meant to be used that.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Datepicker RangeThey have made it a little tricky for us to do just what you want, but I’ve found where to put this.
It is in advanced-custom-fields/core/fields/date_picker/date_picker.php. Line 63 look like this:
'isRTL' => isset($wp_locale->is_rtl) ? $wp_locale->is_rtl : false,
Right below that, add in this:
'minDate' => '-20', 'maxDate' => '+1M +10D'