-
Posts
651 -
Joined
-
Last visited
-
Days Won
6
Everything posted by rick
-
Just my opinion, but this type of functionality should be included in the core image functions as each image is uploaded and saved. We as developers nust account for the greater diversity in user devices in the future. Having images processed on the backend (vs frontend page render) based on styles specific to a project (config options) would be tremendously helpful. Set it and forget it, type of thing.
-
Two uses for this solution -- part of a book back matter (indexing) and newspaper/magazine column layouts. In a responsive design, you can have a single-column for mobile, two-column for tablet, and three-column for desktop -- similar to iNoize's attached image.
-
Glad it's sorted and runnin'! Here's to your first forum post being the most difficult during your ProcessWire career!
-
I like the textformater module.
-
Server IP/~user RewriteBase may need to be set in htaccess. Are you running apache2.4+ (See comments in htaccess regarding versions).
-
Welcome, Snd, to the forum. Glad to have you aboard! It sounds like you copied the install from local to remote without actually performing the install on your remote, which is fine (See this topic or this one). Your DB settings are set in config.php, but, have you checked to see if the database does exists on your remote machine?
-
First, welcome to the forum. There are many ways to accomplish goals in ProcessWire, so I'm sure others will submit additional info, or a completely different solution. Probably the simplest method to start with would be to create a text field to hold the desired URL, and reference that page field in your code as the usage section describes on the github preview site. $preview_url = new LinkPreview( $your_page->your_field ); $parsed_url = $preview_url->getParsed(); etc... Also, that solution on that site is not the only solution available, as this functionality has been a fairly common request for a number of years. So you might want to search around for an option (e.g., jquery) that may better fit your needs.
-
Something similar to this url preview feature?
-
Nice looking site. Only critique is the load times for the front page movie and all the header and staff images. Maybe default the movie to a screenshot, and play it only on user request, rather than running it initially. I like the way the staff bios are presented.
-
Sorry. I was in a hurry when I first posted, and only glanced at the error message in your question. Try this to retrieve whatever the module name is (?) within quotes. I believe this also instantiates the class as well (but gladly defer to the knowledgeable members). $this->modules->get('?');
-
Just off the top, I don't believe the comment module is autoloaded, so you'd have to reference it prior to instantiation.
-
Add the TITLE attribute to the label with the same content?
-
Can you post a link to the site?
-
Hi Bryan. Welcome to the forum. Edit: What LostKobrakai said
-
I'm not familiar with foundation, as I use bootstrap myself. Bootstrap does have responsive tables within a div tag. You may want to look there and transfer that styling into your style file. /$.02
-
tbody class background color is not transparent in app.css line 3301. Is that what you mean? See sass reference, $table-background, default is white.
-
is it possible to set a default value of an integer input field type ?
rick replied to adrianmak's topic in Getting Started
-
I would like to make a suggestion, which combines this topic with those of the cheat sheet and documentation topics, and the blog posts covering filed type definitions. I would think that someone new to processwire isn't concerned so much as how to design a front-end layout as it is how to use the power of the api as it relates to both the front-end and manipulating the supporting data. I think most people coming to processwire already have a decent grasp of HTML, PHP, etc., but lack an understanding of how to assemble all the excellent tools found within the processwire core to accomplish a desired goal. Based on the recent (past few weeks) forum topics, tutorials could cover menu creation, searching, extracting specific data from one or more pages, defining multi-language interfaces, etc. As there are many ways to approach a general objective, I would like to see specific procedures that utilize the efficiency of processwire. A great example is this tutorial by LostKobrakai. And even though there are excellent modules available that satisfy specific development requirements, there is still a need (at least for me) for a centralized location of instructional information. The resulting tutorial code samples could then be integrated into the appropriate sections of the cheat sheet and the general documentation.
-
Hi Pete, Couple of things, one related, one not. In the developer directory, is there any method we could implement to verify that a member's data is valid and functioning correctly? For example, one member's web site returns an error. This looks bad. Can we poll the URLs and notify members if an issue is discovered? [Note: I PM'd the member about this error.] Not related: On the members page of this forum, the alphabet tabs don't appear to work. Selecting a specific letter returns all results rather than that group. Where should this issue be reported? Or in the immortal words of Monte Python, "Those responsible have been sacked."
-
The issue I have with providing joopalpress, out-of-the box, pre-configured solutions, is processwire shouldn't be implying endorsement of any framework or component that is not processwire itself. By including any of those in a default installation, or as an add-on, would degrade processwire to the level of the joopalpresses. The primary strength is processwire is non-destructive and non-limiting with a developer's creations. What I think might be a solution, is to create a sub-forum under getting started where we can provide topics on setting up processwire with whatever framework (or other add-on) as a guide for new users, and even for seasoned developers to look at. We could also demonstrate how to swap site profiles. I think it would be advantageous to show new users how easy it is to utilize these various components with processwire. But putting all the combinations into an install would not be my first choice.
-
This is just my personal opinion, but I hate social media. Actually, I find it annoying to be constantly interrupted with tweets, or other messages, while working. And when I'm not working (read playing golf) the last thing I'm concerned about at that time is an update. I also try to keep things centrally located so that I don't have to go lookin' at other places to get my news or information. As it is now, we search both the forum and github for information regarding a topic. I think it would become a maintenance issue to add more avenues. Don't get me wrong, I'm not against using these tools to better the publicity, I'm just sayin' I personally don't use them.
- 9 replies
-
- 2
-
-
- marketing
- social media
-
(and 1 more)
Tagged with:
-
I like this option. Regarding the intermittent click, maybe i glanced at it wrong, but aren't you already in the click event on line 128, and then executing another click on 131 for the same element?
-
Glad you got it sorted. Looks like the new year is starting off well.
-
Hi Jones, and welcome to the forum. If I understand your question correctly, adding HTML markup within and SVG element is a front-end issue (therefore not related to ProcessWire) and quite a bit more complicated that it looks. There are, however, many references available from a google search regarding SVG <text>, or CANVAS, etc., which would be a great starting point for you. Since ProcessWire does not restrict you on what or how you create your user-interface, I would recommend you first create the front-end and get it working the way you desire. We could then help you with having ProcessWire manage that information. You will have to determine the best way to accomplish your goals, but you might look at either the TSPAN var text = svg.append("svg:text"); text.append("svg:tspan").style("fill", "red").text("hello"); text.append("svg:tspan").style("fill", "blue").text("world"); Or an foreignObject element: svg.append("svg:foreignObject") .attr("width", 200) .attr("height", 200); .append("div") .html("<span style='color:red'>Hello</span> <span style='color:blue'>world</span>!"); Or even an absolute-positioned HTML overlay. Edit: @Mods: Should this be moved to off-topic?