Lewis Tyler
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook for WooCommerce] URL incorrectly formattedHi Thanks for writing back
Our website is set up on the Roots Bedrock platform (https://roots.io/bedrock) which installs WP as a subdirectory at https://example.com/wp
Is it possible that this is the issue? We do have an NGINX redirect for image files that will point to the /wp/ subdirectory, so it seems something else is up here
Any further insight would be greatly appreciated
Same issue here – any news?
Forum: Plugins
In reply to: [Social Share Buttons by Supsystic] 'Create project' button not workingWell I would but I am working offline with wamp ??
I thought it could be a problem with being offline but I also tried the plugin on a couple of different hosted sites and had the same issue!
Forum: Plugins
In reply to: [WP Tiles] exclude_current_post="true" not working?Hey Mike thank you for the help ??
Here’s what I did, it was actually quite simple. I just looked up the standard loop code and stuck the shotcode echo in it.
<?php if ( have_posts() ) { while ( have_posts() ) { the_post(); // echo do_shortcode('[wp-tiles post_type="Portfolio" exclude_current_post="true" orderby="date" order="ASC" grids="Portfolio" small_screen_grid="Mobile" breakpoint="800" padding="25" grid_selector_color="#444444" posts_per_page=4]'); // } // end while } // end if ?>
Thanks again – I’m off to codecademy to brush up on my php!
Forum: Plugins
In reply to: [WP Tiles] exclude_current_post="true" not working?Hi Mike, sorry to leave you hanging on this one ??
I’ve come back to this and well, here is my code. I having read your words I think the problem is I am using echo to call the shortcode, when I should be doing php?
Here it is:
<div class="single-portfolio <?php echo $class ?>"> <div class="container"> <div class="portfolio-content"> <?php echo the_content(); ?> </div> <!--- --> </div> <div class="container" id="more-portfolio"> <div class="titles " style="margin-top: 45px; margin-bottom: 40px;"><i class="fa fa-search"></i><h1>Other projects</h1></div> <?php echo do_shortcode('[wp-tiles post_type="Portfolio" exclude_current_post="true" orderby="date" order="ASC" grids="Portfolio" small_screen_grid="Mobile" breakpoint="800" padding="25" grid_selector_color="#444444" posts_per_page=4]'); ?></div> </div> <?php get_footer(); ?>
Forum: Plugins
In reply to: [WP Web Scraper] What am I doing wrong?Okay I solved the problem using the postargs tag
[wpws url=”https://full-time.thefa.com/Table.do?divisionseason=489034705″ selector=”table:eq(0)” output=”html”]
However now I can’t get the table to render as it does on that page.
I’ve modified the output from text to html but it still is displaying as it did without the output=”html” – can anyone help?!
Forum: Plugins
In reply to: [WP Tiles] Color by post categoryThis is possible..
Have a look at my site: https://www.thenoisegate.com
WP-Tiles will include your category as a class in the div.
Here’s my code for the border. I had to use !important in the css to get it to work properly.
.wp-tile-container .grid .News { border-bottom: 7px solid #eea95c !important; }
Be careful if your category name is made up of two words. You will only have to use one word as the class to activate the color change