teebark
Forum Replies Created
-
Forum: Plugins
In reply to: [Participants Database] New user linkThat was it. After I created the page, and changed the link page id to that page, it worked. Thanks.
Forum: Plugins
In reply to: [WP Show Posts] Title position to rightNever mind–I figured out how to do it with grid. I had to add a class to the shortcode, then used this css:
<div class="wpsp-align-posts">[wp_show_posts id="2733"]</div>
/* Arrange show-posts entries */
.wpsp-align-posts .wp-show-posts-inner {
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: auto auto auto auto;
}
.wpsp-align-posts .wp-show-posts-inner header {
grid-column: 2 / 3;
grid-row: 1 / 2;
margin-bottom: 5px;
}
.wpsp-align-posts .wp-show-posts-inner .wp-show-posts-image {
grid-column: 1 / 2;
grid-row: 1 / 4;
}
.wpsp-align-posts .wp-show-posts-inner .wp-show-posts-entry-summary {
grid-column: 2 / 3;
grid-row: 2 / 3;
margin-bottom: 5px;
}
.wpsp-align-posts .wp-show-posts-inner .wpsp-read-more {
grid-column: 2 / 3;
grid-row: 3 / 4;
}Forum: Plugins
In reply to: [WP Show Posts] Image positionEvidently, if it’s a blog page, you control image positioning with customize/layout/blog. Otherwise, you can do it in the show posts item.
Forum: Plugins
In reply to: [WP Show Posts] Image positionFixed it–you set the image location in the customizer, not in the show posts item.
Forum: Plugins
In reply to: [Participants Database] Multiple dbYes, I think I understand now, the contact, parent and player are not separate records, they just represent groupings within the same record.
Forum: Plugins
In reply to: [Participants Database] Multiple databasesGot it. To list the 2nd database, I added a db_group field for the type, and I can retrieve the data with this shortcode:
[pdb_list filter="db_group=directory" fields="d_last_name, d_first_name, d_email, d_home_phone"]
where the ‘d_’ prefixes are the 2nd database fields.URL to show problem is https://richastro.org/index.php/vaas-test/
The link above shows tabs working, with the canvas template.I’ve had good luck with DP up until recently, and their support has been a dead end. They typically go days between responses, and my last reply has been unanswered for 5 days now. I’m simply trying to copy a live site to my local pc–whould be a piece of cake. I would love to have another person take a look–maybe another person can give it a new perspective.
installer-log.txt
Step 3 of 4: Update Data
Please try again an issue has occurred.Server Code: 200
Status: OK
Response:
Additional Troubleshooting Tips:
– Check the installer-log.txt file for warnings or errors.
– Check the web server and PHP error logs.
– For timeout issues visit the Timeout FAQ SectionForum: Plugins
In reply to: [Content Blocks (Custom Post Widget)] Last WP update broke pluginThis turned out to be a plugin problem. Aquoid Photonic has an option to disable shortcode editing, and checking that fixed the problem with Content Blocks.
Forum: Plugins
In reply to: [bbp style pack] Error breaks pageThat did it–thanks.
Forum: Plugins
In reply to: [bbp style pack] Error breaks page5.4.45
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Move logo to top nav barDitto. Did you ever find a solution? But I was able to move the nav bar to the top–here’s how I did it, how does it compare to your solution?
.custom-header
{position: relative;}
.navigation-top
{position: absolute; top: 0;}Yes, I’ve started working on it. I’ll keep you posted here. I’m not working on it full time, so I don’t have a target date in mind.
Digitale, I’m interested in the same feature–I’m looking at adding it myself. Are you still interested?
Forum: Plugins
In reply to: [WP Web Scraper] Update: Error parsing: Invalid CSS selectorI’m using this query successfully, but I’d like to have more control over the table elements.
query=”.standardTable tr td” eq=”16″Before your update, I could select the second row and third element specifically, using selector=”.standardTable tr:eq(1) td:eq(2)”
The query I’m using requires me to count down from the first row, first element. Is there a way to code it using the new query format so I can access specific rows and elements?