pembrokellc
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Preview vs. Actual PageHave a look
https://pembrokeinstruments.com/test-table-page/Things only improved when I inserted the CSS in the Impreza theme CSS code area.
It still needs a little tweaking. I have to zoom to 50% to see whole table.Please advise. Thanks.
I would like to make a donation. Can you accept credit card? (Can’t be paypal)
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Preview vs. Actual PageDoes custom CSS code have to be manually inserted in the area the theme (Impreza) designates?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Preview vs. Actual PageHi Tobias-
I mainly want to center all the text and increase the column widths slightly.
https://pembrokeinstruments.com/test-table-page/Thanks
-LeslieForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Preview vs. Actual PageI have also tried turning off the other plug-ins…no change in appearance.
I would like it to be close to preview which looks good.Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Preview vs. Actual PageTobias-
I switched to 3 other default WP themes and they look no better. Is there a default theme you know should be compatible?Forum: Plugins
In reply to: [WP Fastest Cache] Not sure if caching is workingNow I am really confused. What diagnostic can verify WPFC is enabled and working OK?
Forum: Plugins
In reply to: [WP Fastest Cache] Not sure if caching is workingIf caching is working, why the low score from gtmetrix and pingdom?
Forum: Plugins
In reply to: [WP Fastest Cache] Not sure if caching is workingHow do you log in for creating cache?
Forum: Themes and Templates
In reply to: [Customizr] Slider with multiple buttonsLooking for help on how to fix this snippet.
I am trying to reduce number of sliders by having 4 buttons on first slider.
Forum: Themes and Templates
In reply to: [Customizr] Adding Widget area to HeaderWould this work on the homepage?
I am looking for a way to add text above the featured pages area….what’s missing is a way to add a value statement above the featured products.I am also looking for a way to have a total of 4 buttons on one slider so I don’t need 4 individual sliders with one button. I posted about this a few days ago and Nikeo provided some example code but I don’t know CSS so I can’t complete it.
Forum: Themes and Templates
In reply to: [Customizr] Slider with multiple buttonsHi Nikeo-
I added the } at the end of the snippet and it parses.
But the slider images are all exploded in size.
Also, so I have to add the explicit page links in the snippet?
Does the name of the slider have to include .jpg?Thanks
pembrokellcForum: Themes and Templates
In reply to: [Customizr] Slider with multiple buttonsThanks. This I added this to my functions.php in child theme and I get a parse error. Please see functions.php file below
Parse error: syntax error, unexpected $end in /home/penbr0/public_html/wp-content/themes/customizr-child/functions.php on line 48
<?php
// Adds a widget area.
if (function_exists(‘register_sidebar’)) {
register_sidebar(array(
‘name’ => ‘Extra Header Widget Area’,
‘id’ => ‘extra-widget-area’,
‘description’ => ‘Extra widget area after the header’,
‘before_widget’ => ‘<div class=”widget my-extra-widget”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2>’,
‘after_title’ => ‘</h2>’
));
}// Place the widget area after the header
add_action (‘__after_header’, ‘add_my_widget_area’, 0);
function add_my_widget_area() {
if (function_exists(‘dynamic_sidebar’)) {
dynamic_sidebar(‘Extra Header Widget Area’);
}
}add_filter( ‘tc_slide_background’ , ‘my_custom_slide’ , 10, 4);
function my_custom_slide( $original , $link , $attachement_id, $slider ) {
//apply only to a specific slide in a specific slider name
if ( ‘ pembroke-slider-sept-2014-c’ != $slider || 2547 != $attachement_id ) // <= set the name of your slider and the id of the slide’s media
return $original;
ob_start();
?>
<div class=”row-fluid” style=”position: absolute;top: 0px;z-index: 1;text-align: center;”>
<div class=”span3 product1″>product1</div>
<div class=”span3 product2″>product2</div>
<div class=”span3 product3″>product3</div>
<div class=”span3 product4″>product4</div>
</div><?php
$html = ob_get_contents();
if ($html) ob_end_clean();
return $html.$original;Forum: Themes and Templates
In reply to: [Customizr] Slider with multiple buttonsPlease look at my website https://www.pembrokeinstruments.com and see first slider. There are four products on the one slider and I would like a button for each product on this one slider.
Forum: Themes and Templates
In reply to: [Customizr] Customizr and WP 3.9.1-Media UploadThanks, looks like this did the trick.
Forum: Themes and Templates
In reply to: [Customizr] Customizr and WP 3.9.1-Media UploadThis is snippet I copied and pasted from the Customizr website.
I did not change it, just copy and paste. I will test your guidance.
Thanks/