rlbyrd
Forum Replies Created
-
Forum: Plugins
In reply to: [Product Table - Easy Digital Downloads] Table per categoriesAny update on this?
Additionally, activation on the latest WP version yields this:
Parse error: syntax error, unexpected ‘)’ in /var/www/html/wp-content/plugins/edd-product-table/eddpt.php on line 105
Forum: Themes and Templates
In reply to: [Ward] Replace Jumbotron text with an imageWere you able to make you image here take the main space instead of the Jumbotron text?
Do you mean “replace the large text headline with a graphic?” If so, yes, that’s doable.
Forum: Themes and Templates
In reply to: [Ward] Power Button IconSure. In functions.php, find function bavotasan_jumbotron (it’s the last function in the file).
Locate this line:
<i class="middle-circle icon-off"></i>…and change it to…
<a href="http://your.url/"><i class="middle-circle icon-off"></i></a>That works on mine, but I *have* changed the style.css file to use a small .png file instead of the power button graphic. I don’t see why it wouldn’t work for the original setup.
Forum: Themes and Templates
In reply to: [Ward] Replace Jumbotron text with an imageWell, I did this, although my method was somewhat Neanderthalish.
Along about line 6500 (!!) in style.css, you’ll see this:
.icon-off:before { content: "\f021"; }I changed mine to this…
.icon-off:before { /* content: "\f021"; */ content:url(/images/v.png); }I created an image with a transparent background that was 100px wide and 70px high, and put my graphic in there.
My experience today has been the same. I also note with some sadness that you posted this two months ago with nary a response.
Any assistance the developer (or anyone else) could give would be appreciated. After doing numerous Google searches trying to resolve this issue today, I’ve come to the tentative conclusion that perhaps the original developer of this plugin has abandoned it. 🙁
I discovered that the 256M limit is a WordPress core limitation, not a plugin limitation, and it can be (temporarily) changed by editing wp-includes/default-constants.php. I had to change it to 2048M (!!), but that did get me through the migration.
Other migration plugins can be set to do the posting in chunks to conserve memory usage; I’d suggest this be added to future releases of this plugin.